下面是我压缩文件的代码。
btnZip.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
byte[] buffer = new byte[1024];
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd-----HH-mm-ss");
Date date = new Date();
String date_time = dateFormat.format(date);
System.out.println(dateFormat.format(date));
FileOutputStream fos =
new FileOutputStream(destFilePath + "\\"+ date_time +".zip");
ZipOutputStream zos = new ZipOutputStream(fos);
ZipEntry ze= new ZipEntry(source.getName());
zos.putNextEntry(ze);
FileInputStream in = new FileInputStream(sourceFilePath);
int len;
while ((len = in.read(buffer)) > 0) {
zos.write(buffer, 0, len);
}
in.close();
zos.closeEntry();
zos.close();
System.out.println("Done");
}
});
我想要实现的是,如果我提供目录的路径,它也应该压缩目录。有人可以帮我吗?谢谢。