`
grantbb
  • 浏览: 268471 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Java解ZIP压缩文件

    博客分类:
  • JAVA
阅读更多
try {
// Open the ZIP file
String inFilename = "infile.zip";
ZipInputStream in = new ZipInputStream(new FileInputStream(inFilename));

// Get the first entry
ZipEntry entry = in.getNextEntry();

// Open the output file
String outFilename = "o";
OutputStream out = new FileOutputStream(outFilename);

// Transfer bytes from the ZIP file to the output file
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}

// Close the streams
out.close();
in.close();
} catch (IOException e) {
}
分享到:
评论
1 楼 javaeyes 2007-12-13  
grantbb在上海工作?
你那还招做搜索的吗?

相关推荐

Global site tag (gtag.js) - Google Analytics