在Android中创建加密文本文件

时间:2016-02-28 20:43:38

标签: android

我的/data/data/com.Myapp/file中有一个txt文件,我想加密这个txt并创建其他txt文件。在netBeans中使用java,我可以这样做,但是使用Android我打开txt文件并创建另一个加密的文本文件时遇到的问题很少

我是班级加密

 public void Inicia(){
    this.c = getApplicationContext();
    FileOutputStream fos = null;
    try {
        String key = "squirrel123"; // needs to be at least 8 characters for DES
        File file = new File(getApplicationContext().getFilesDir().getPath() + "/WhiteList.txt"); // original file
        FileInputStream fin = null;
        FileInputStream fis = new FileInputStream(file);
        File file2 = new File(getApplicationContext().getFilesDir().getPath() + "/teste.txt"); // create file encrypted
        fos = new FileOutputStream(file2, true);
        encrypt(key, fis, fos);

我的问题是创建" teste.txt",我无法创建此文件

我的代码在java应用程序中运行良好,但在Android中我遇到了这个问题。打开txt文件并创建一个新的

0 个答案:

没有答案