我可以在 Android 中创建受密码保护的文件夹吗?
我想创建一个受密码保护的文件夹。我可以通过以下方式创建文件夹,但如何创建受密码保护的文件夹?
File nf = new File("/sdcard/NewFolder");
nf.mkdirs();
I would like to create a folder which is password protected. I am able to create a folder in the following way, but how can I create a password protected folder?
File nf = new File("/sdcard/NewFolder");
nf.mkdirs();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
String dir = getPackageManager().getPackageInfo("com.example.kinkey", 0).applicationInfo.dataDir;
注:在windows pc上可见
String dir = getPackageManager().getPackageInfo("com.example.kinkey", 0).applicationInfo.dataDir;
Note: it is visible on windows pc
您无法在 SD 卡上创建此类文件夹。其他应用程序可以访问保存在 SD 卡上的所有内容。如果您想创建一个无法从应用程序外部访问的文件夹,请使用 Context.getDir() 方法,模式设置为 MODE_PRIVATE:
You can't create such a folder on sdcard. Everything that's saved onto sdcard can be accessed by other applications. If you want to create a folder which is not accessible from outside of your application use Context.getDir() method with mode set to MODE_PRIVATE: