Here you can find the source of UpZip(String zipFileString, String fileString)
@SuppressWarnings("resource") public static java.io.InputStream UpZip(String zipFileString, String fileString) throws Exception
//package com.java2s; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; public class Main { @SuppressWarnings("resource") public static java.io.InputStream UpZip(String zipFileString, String fileString) throws Exception { android.util.Log.v("XZip", "UpZip(String, String)"); ZipFile zipFile = new ZipFile(zipFileString); ZipEntry zipEntry = zipFile.getEntry(fileString); return zipFile.getInputStream(zipEntry); }/*w w w. ja va 2s.c o m*/ }