0

我正在制作一个 Android 应用程序,我想阻止用户打开某个文件夹。在该文件夹中,用户可以存储图像或视频文件。如果我可以用密码保护该文件夹,那就太好了。

最好的方法是什么?

4

3 回答 3

5

这是用于加密和解密 Sdcard 文件夹中文件的两个功能。我们不能锁定文件夹,但我们可以在 Android 中使用 AES 加密文件,它可能会对您有所帮助。

static void encrypt() throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
    // Here you read the cleartext.
    FileInputStream fis = new FileInputStream("data/cleartext");
    // This stream write the encrypted text. This stream will be wrapped by another stream.
    FileOutputStream fos = new FileOutputStream("data/encrypted");

    // Length is 16 byte
    SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES");
    // Create cipher
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.ENCRYPT_MODE, sks);
    // Wrap the output stream
    CipherOutputStream cos = new CipherOutputStream(fos, cipher);
    // Write bytes
    int b;
    byte[] d = new byte[8];
    while((b = fis.read(d)) != -1) {
        cos.write(d, 0, b);
    }
    // Flush and close streams.
    cos.flush();
    cos.close();
    fis.close();
}

static void decrypt() throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
    FileInputStream fis = new FileInputStream("data/encrypted");

    FileOutputStream fos = new FileOutputStream("data/decrypted");
    SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES");
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.DECRYPT_MODE, sks);
    CipherInputStream cis = new CipherInputStream(fis, cipher);
    int b;
    byte[] d = new byte[8];
    while((b = cis.read(d)) != -1) {
        fos.write(d, 0, b);
    }
    fos.flush();
    fos.close();
    cis.close();
}
于 2013-03-22T11:53:36.427 回答
2

您应该将此信息保存在内部存储中。通常其他应用程序无法访问这些文件。从质量上看:

您可以将文件直接保存在设备的内部存储中。默认情况下,保存到内部存储的文件对您的应用程序是私有的,其他应用程序无法访问它们(用户也不能)。当用户卸载您的应用程序时,这些文件将被删除。

查看链接:http: //developer.android.com/guide/topics/data/data-storage.html#filesInternal

于 2013-03-22T11:45:07.660 回答
1

Insted of LOCK 我会用.类似文件夹名的文件夹->.test

用户看不到这里的文件夹是代码

File direct = new File(Environment.getExternalStorageDirectory() + "/.test");

   if(!direct.exists())
    {
        if(direct.mkdir()) 
          {
           //directory is created;
          }

    }

上面的代码是创建名为“.test”的文件夹(在 SD 卡中),然后将您的数据(文件、视频.. 任何)保存在此文件夹中,用户无法访问它。

如果您在内部存储中创建文件夹,那么如果用户清除您的应用程序的数据,那么该文件夹可能EMPTY

于 2013-03-22T11:47:19.127 回答