在有些时候我们需要将zip包下的某个entry转换为inputstream流方便处理。
贴下代码,
/**
* 解压zip获取zip下的某个文件流
* @param in zip对应的输入流
* @param fileName zip下某个文件名
* @return zip下文件对应输入流
* @throws IOException
*/
public InputStream unZip(InputStream in,String fileName) throws IOException {
ZipInputStream zipIn = new ZipInputStream(in);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] bytes = new byte[1024];
ZipEntry zipEntry =null;
while((zipEntry=zipIn.getNextEntry())!=null){
if(zipEntry.getName().equals(fileName)) {
while(true){
int len = zipIn.read(bytes);
if (len <= 0) {
break;
}
bos.write(bytes);
}
bos.flush();
bos.close();
}
}
InputStream bis = new ByteArrayInputStream(bos.toByteArray());
bos.close();
zipIn.closeEntry();
zipIn.close();
return bis;
}
本文提供了一种从ZIP文件中提取特定文件并将其转换为输入流的方法。通过使用ZipInputStream和ByteArrayOutputStream,该方法能够读取ZIP存档中的指定文件,并返回其内容的输入流。
489

被折叠的 条评论
为什么被折叠?



