public void testStripDebug() throws IOException, Pack200Exception, URISyntaxException {
in = new JarFile(new File(Archive.class
.getResource("/org/apache/harmony/pack200/tests/sqlUnpacked.jar").toURI()));
file = File.createTempFile("sql", ".pack");
out = new FileOutputStream(file);
Archive archive = new Archive(in, out, false);
archive.stripDebugAttributes();
archive.pack();
in.close();
out.close();
// now unpack
InputStream in2 = new FileInputStream(file);