I believe that you are looking for something like this:
FileInputStream fin = new FileInputStream("your.zip"); ZipInputStream zin = new ZipInputStream(fin); ZipEntry ze = null; while ((ze = zin.getNextEntry()) != null) { if (ze.getName().equals("your.xml")) {
Whitefang34
source share