无法在/ data / android下创建文件

时间:2014-05-29 21:39:14

标签: android

我写了一个android应用程序,我在/ data /目录下创建了一个文件,我成功地能够创建该文件,我现在能够读取和写入此文件,我想给组和其他用户提供读取权限我无法做到

我的示例代码在这里

尝试{

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 /目录下创建一个文件,并为其他用户提供读取权限 任何建议请告诉我

此致

缺口

0 个答案:

没有答案