如何以编程方式锁定Android文件夹?

问题描述 投票:0回答:3

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

最好的方法是什么?

android locking directory
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();
}

2
投票

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

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

请参阅链接:http://developer.android.com/guide/topics/data/data-storage.html#filesInternal


1
投票

安装了 LOCK 我建议你使用

.
创建文件夹,如文件夹名称 ->
.test

用户看不到该文件夹。

这是代码,

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

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

    }

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

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

EMPTY

© www.soinside.com 2019 - 2024. All rights reserved.