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
$