ivan

Results 2 comments of ivan

createHashFile2方法中,将解包前的entry.method 应用到新的zipEntry中即可 def static void createHashFile2(String filePath, String fileName, String content) throws IOException { ZipInputStream zis = new ZipInputStream(new FileInputStream(filePath)); ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(filePath + ".temp")); ZipEntry entry...