Package java.util.jar

Examples of java.util.jar.Pack200$Packer


    private byte[] pack200(byte[] data) throws Exception
    {
        JarInputStream in = new JarInputStream(new ByteArrayInputStream(data));
        ByteArrayOutputStream out = new ByteArrayOutputStream();

        Packer packer = Pack200.newPacker();

        SortedMap<String, String> props = packer.properties();
        props.put(Packer.EFFORT, "9");
        props.put(Packer.KEEP_FILE_ORDER, Packer.TRUE);
        props.put(Packer.UNKNOWN_ATTRIBUTE, Packer.PASS);

        final PrintStream err = new PrintStream(System.err);
        System.setErr(new PrintStream(Constants.getNullStream()));
        packer.pack(in, out);
        System.setErr(err);

        in.close();
        out.close();
View Full Code Here


        Packer packer = Pack200.newPacker();
        assertEquals("org.apache.harmony.pack200.Pack200PackerAdapter", packer.getClass().getName());
    }

    public void testUnpacker() {
        Unpacker unpacker = Pack200.newUnpacker();
        assertEquals("org.apache.harmony.unpack200.Pack200UnpackerAdapter", unpacker.getClass().getName());
    }
View Full Code Here

TOP

Related Classes of java.util.jar.Pack200$Packer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.