我可以壓縮包含在特定文件夾中的文件。這是我使用的代碼:如何在Android中壓縮特定文件夾中的文件夾和文件?
public class Compress {
private static final int BUFFER = 2048;
private String[] _files;
private String _zipFile;
public Compress(String[] files, String zipFile) {
_files = files;
_zipFile = zipFile;
}
public void zip() {
try {
BufferedInputStream origin = null;
FileOutputStream dest = new FileOutputStream(_zipFile);
ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(dest));
byte data[] = new byte[BUFFER];
for(int i=0; i < _files.length; i++) {
Log.v("Compress", "Adding: " + _files[i]);
FileInputStream fi = new FileInputStream(_files[i]);
origin = new BufferedInputStream(fi, BUFFER);
ZipEntry entry = new ZipEntry(_files[i].substring(_files[i].lastIndexOf("/") + 1));
out.putNextEntry(entry);
int count;
while ((count = origin.read(data, 0, BUFFER)) != -1) {
out.write(data, 0, count);
}
origin.close();
}
out.close();
} catch(Exception e) {
e.printStackTrace();
}
}
}
我打電話這個類以這種方式在另一個類:
String[] files = {mainFolderPath+"/text1.txt", mainFolderPath+ "/text2.txt", mainFolderPath +"/NewFolder"};
Compress compress = new Compress(files, sourceFile.getAbsolutePath());
compress.zip();
在運行我得到一個IOException應用。
你能告訴我如何壓縮包含另一個文本文件以及文本文件「text1.txt」和「text2.txt」的「NewFolder」?
謝謝。
什麼行引發異常?你有沒有做過讀/寫文件的測試?也許你只是沒有權限訪問文件系統? – enTropy
謝謝你的回覆。如果我在String [] files數組中包含「NewFolder」,則這是引發IOException的行。如果我不添加「NewFolder」,我可以得到僅包含「text1.txt」和「text2.txt」的壓縮文件夾。 **((count = origin.read(data,0,BUFFER))!= -1)** –