摘要: 1、判断压缩包解压后的大小/** * 读取解压缩文件的大小 * @param path 文件路径 * @return 文件大小 单位byte */ public static long getUnZipFileSize(String path) { long size = 0l; try { InputStream fis = new FileInputStream(new File(path)); ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis)); ZipEntry entry;... 阅读全文
posted @ 2013-10-31 19:02 Liu Siyuan 阅读(242) 评论(0) 推荐(0)