자바 파일 을 지정 한 위치 로 압축 합 니 다.
2407 단어 자바 배경
package cn.com.cis.acic.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
public class ZIPUtil {
/***
* fileList
* zipFileName : date/file/2019/12/2101001.zip
* */
public static void main(String[] args) {
ArrayList arrayList=new ArrayList();
arrayList.add("D:\\zip/21000.xlsx");
arrayList.add("D:\\zip/21004007717-File.xlsx");
ZIPUtil.createZipFile(arrayList, "D:\\zip/aa.zip");
}
public static String createZipFile(ArrayList fileList,
String zipFileName) {
if ((fileList == null) || (fileList.size() == 0)) {
return null;
}
// File
File zipFile = new File(zipFileName);
// ZIP
ZipOutputStream out = null;
try {
// ZIP
out = new ZipOutputStream(new FileOutputStream(zipFile));
//
for (int i = 0; i < fileList.size(); i++) {
//
File inFile = new File(fileList.get(i));
if (inFile.exists()) {
// ZipEntry
ZipEntry entry = new ZipEntry(inFile.getName());
// ZIP
out.putNextEntry(entry);
int len = 0;
//
byte[] buffer = new byte[1024];
// FileInputStream
FileInputStream fis;
fis = new FileInputStream(inFile);
while ((len = fis.read(buffer)) > 0) {
out.write(buffer, 0, len);
out.flush();
}
// closeEntry
out.closeEntry();
// FileInputStream
fis.close();
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
// ZIP
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return zipFileName;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 파일 을 지정 한 위치 로 압축 합 니 다.텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.