我的示例代码在这里
尝试{
String path ='/ data /';
f = new File(path,“myfile.conf”);
f.setReadable(真,假);
f.setWriteable(真,假);
} catch(例外e){
e.printstackstrace();
}
当我使用cmd行看到文件时
-rw ------- / data / myfile.conf
在我的Androidmanifest.xml中 - 我有android:userid这是System所以我的应用程序以系统用户身份运行
我的想法是在/ data /目录下创建一个文件,并为其他用户提供读取权限 任何建议请告诉我
此致
缺口