FileOutputStream fs = openFileOutput("/test.in", MODE_WORLD_WRITEABLE);
String s = "[Head]\r\n";
s += "Type=2";
byte[] buffer = s.getBytes();
fs.write(buffer);
fs.close();
运行上面的代码时,我得到一个IllegalArgumentException:
java.lang.IllegalArgumentException:
File /test.in contains a path
separator
而且我猜“/”不受欢迎.我想要“/”,因为我需要将文件写入设备的根目录,如API中所述,试图遵循:
A request is a textfile (UNICODE) with
the file extension “.in”. The
application reads and parses the .in
file when it’s placed in root
directory on the mobile device.
问题是:如何将文件放在根目录中?我一直在寻找答案,但还没有找到答案.
解决方法:
Context.openFileOutput用于创建应用程序专用的文件.它们会进入您应用的私人数据目录.提供名称而不是路径:“name要打开的文件的名称;不能包含路径分隔符”.
http://developer.android.com/reference/android/content/Context.html#openFileOutput(java.lang.String,int)
至于你的问题,你不能写/除非你是root:
my-linux-Box $adb shell ls -l -d /
drwxr-xr-x root root 2010-01-16 07:42
$
我不知道你的API是什么,希望你写到根目录,但我猜它不是一个Android API,你正在阅读错误的文档;-)
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。