我正在制作Android应用程序,我想阻止用户打开某个文件夹。在该文件夹中,用户可以存储图像或视频文件。如果我可以使用密码保护该文件夹,那就太棒了。
这是最好的方法吗?
答案 0 :(得分:4)
这是Sdcard文件夹中加密和解密文件的Both函数。 我们无法锁定文件夹但我们可以在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();
}
答案 1 :(得分:2)
您应该将此信息保存在内部存储中。通常,其他应用无法访问这些文件。从整洁程度来看:
您可以直接在设备的内部存储上保存文件。默认情况下,保存到内部存储的文件对应用程序是私有的,而其他应用程序无法访问它们(用户也无法访问)。当用户卸载您的应用程序时,将删除这些文件。
请参阅链接:http://developer.android.com/guide/topics/data/data-storage.html#filesInternal
答案 2 :(得分:2)
Insted of LOCK我会告诉您使用.
制作文件夹,例如foldername - > .test
用户无法在此处看到该文件夹是代码
File direct = new File(Environment.getExternalStorageDirectory() + "/.test");
if(!direct.exists())
{
if(direct.mkdir())
{
//directory is created;
}
}
上面的代码是创建名称为“.test”的文件夹(在SD卡中)然后保存您的数据(文件,视频......等等),用户无法访问该文件夹。
如果您在内部存储空间中创建文件夹,那么如果用户清除了您应用的数据,那么该文件夹可能会EMPTY
!