0

我想做的是加密和压缩文件并将它们存储在设备的 SD 卡上。

我以前没有使用过原始文件或压缩文件,所以我不知道从哪里开始。

可以在安卓上做吗?我使用的是 4.0.3,是否可以像 1 gb 文件夹一样压缩?还是我必须将它们分成可管理的块?

有任何想法吗?

4

2 回答 2

1

您可以使用ZipInputStreamZipOutput流来读写 Zip 文件。Java 文档页面也有用于阅读和写作的示例代码。您可以使用android加密库进行加密/解密。

于 2012-11-16T09:22:03.967 回答
1
import java.io.*;import java.util.zip.*;
public class Zip {

  public static void main(String[] arg)
  {
    String[] source = new String[]{"C:/Users/MariaHussain/Desktop/hussain.java","C:/Users/MariaHussain/Desktop/aa.txt"};
    byte[] buf = new byte[1024];
    try {
        String target = "C:/Users/MariaHussain/Desktop/target1.zip";
        ZipOutputStream out = new ZipOutputStream(new FileOutputStream(target));
        for (int i=0; i<source.length; i++) {
            FileInputStream in = new FileInputStream(source[i]);

            // Add ZIP entry to output stream.
            out.putNextEntry(new ZipEntry(source[i]));

            // Transfer bytes from the file to the ZIP file
            int len;
            while ((len = in.read(buf)) > 0) {
                out.write(buf, 0, len);
            }

            // Complete the entry
            out.closeEntry();
            in.close();
        }

        // Complete the ZIP file
        out.close();
    } catch (IOException e) {

    }

  }

}
于 2012-11-16T09:54:54.120 回答