Why my decompress class don't make directories?
问题 I have a class to decompress files, it works fine when the zip doesn't have any folder inside. If it does then it just throw errors. Hers my class: public class Decompress { private String _zipFile; private String _location; ZipEntry ze = null; public Decompress(String zipFile, String location) { _zipFile = zipFile; _location = location; _dirChecker(""); } public void unzip() { try { FileInputStream fin = new FileInputStream(_zipFile); ZipInputStream zin = new ZipInputStream(fin); while ((ze