从 ZipOutputStream 创建文件
Create a File from a ZipOutputStream
我正在使用以下代码创建 Zip 文件。我想 return 在方法 createZipFromFiles 中将创建的 Zip 作为文件对象,以便在其他地方使用。这可以从 FileOutputStream 或 ZipOutputStream 完成吗?
public File createZipFromFiles(String zipName, List<File> files) {
try {
FileOutputStream fos = new FileOutputStream(zipName);
ZipOutputStream zos = new ZipOutputStream(fos);
for (File file : files) {
addToZipFile(file.getName(), zos);
}
return null;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
public static void addToZipFile(String fileName, ZipOutputStream zos) throws FileNotFoundException, IOException {
System.out.println("Writing '" + fileName + "' to zip file");
File file = new File(fileName);
FileInputStream fis = new FileInputStream(file);
ZipEntry zipEntry = new ZipEntry(fileName);
zos.putNextEntry(zipEntry);
byte[] bytes = new byte[1024];
int length;
while ((length = fis.read(bytes)) >= 0) {
zos.write(bytes, 0, length);
}
zos.closeEntry();
fis.close();
}
就return
new File(zipName);
因为您已经有了 zip 文件名
我正在使用以下代码创建 Zip 文件。我想 return 在方法 createZipFromFiles 中将创建的 Zip 作为文件对象,以便在其他地方使用。这可以从 FileOutputStream 或 ZipOutputStream 完成吗?
public File createZipFromFiles(String zipName, List<File> files) {
try {
FileOutputStream fos = new FileOutputStream(zipName);
ZipOutputStream zos = new ZipOutputStream(fos);
for (File file : files) {
addToZipFile(file.getName(), zos);
}
return null;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
public static void addToZipFile(String fileName, ZipOutputStream zos) throws FileNotFoundException, IOException {
System.out.println("Writing '" + fileName + "' to zip file");
File file = new File(fileName);
FileInputStream fis = new FileInputStream(file);
ZipEntry zipEntry = new ZipEntry(fileName);
zos.putNextEntry(zipEntry);
byte[] bytes = new byte[1024];
int length;
while ((length = fis.read(bytes)) >= 0) {
zos.write(bytes, 0, length);
}
zos.closeEntry();
fis.close();
}
就return
new File(zipName);
因为您已经有了 zip 文件名