所以我的问题的情况是在我的应用程序中我从互联网上获取一些文件然后我把它们放在内部存储中然后当用户想要访问这些文件时用户可以通过我的应用程序访问它们。
我做了所有的事情,但我想在我的应用程序中提供一些安全性所以我想要的是什么?
- 用户只能在我的应用程序中查看我的文件。用户无法从文件管理器访问它们。不要告诉我放点的解决方案 在文件名或文件夹名称之前我做到了这个问题 解决方案是当我通过在文件名之前加上点来访问它们 文件再次可见。
- 我也希望当用户打开我的文件时,就像pdf阅读器中的pdf一样,他/她限制保存或通过pdf下载它们 读者或其他应用程序。
醇>
我很感激任何帮助。
答案 0 :(得分:1)
您可以加密该文件,以便用户无法访问它们。这是适用于我的加密方法。
public void encrypt() throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
// Here you read your file.
FileInputStream fis = new FileInputStream("Path Of your file");
// This stream write the encrypted text. This stream will be wrapped by another stream.
FileOutputStream fos = new FileOutputStream("Path Of your file");
// 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();
}
以下是解密特定文件的方法。
public void decrypt() throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
FileInputStream fis = new FileInputStream("Path Of your file");
FileOutputStream fos = new FileOutputStream("Path Of your file");
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 :(得分:0)
您可以使用加密算法加密文件,并使用自定义文件扩展名保存它们,然后您可以制作一个意图过滤器,用于从文件管理器中打开它们,为了更高的安全性,我更喜欢JNI用于整个加密系统。