如何在Android设备的根目录中创建/写入文件?

时间:2010-01-17 02:29:55

标签: android file-io

我发现你可以使用这样的东西创建一个文件:

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异常:   文件/test.in包含一个路径   分离器

我估计“/”不受欢迎。我想要“/”,因为我需要将文件写入设备的根目录,如API中所述,试图遵循:

  

请求是带有的文本文件(UNICODE)   文件扩展名“.in”。该   应用程序读取并解析.in   将文件放在root中时   移动设备上的目录。

问题是:如何将文件放在根目录中?我一直在寻找答案,但还没有找到答案。

3 个答案:

答案 0 :(得分:7)

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而您正在阅读错误的文档; - )

答案 1 :(得分:4)

您可以在私人目录中添加带有路径的文件,如

    String path = this.getApplicationContext().getFilesDir() + "/testDir/";
    File file = new File(path);
    file.mkdirs();
    path += "testlab.txt";
    OutputStream myOutput;
    try {
    myOutput = new BufferedOutputStream(new FileOutputStream(path,true));
    write(myOutput, new String("TEST").getBytes());
    myOutput.flush();
    myOutput.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

答案 2 :(得分:0)

我今天面临同样的问题

java.lang.IllegalArgumentException:文件/test.txt包含路径分隔符

当我尝试以下时它起作用了。

           File inputFile = new File("/storage/new/test.txt");
           FileInputStream isr = new FileInputStream(inputFile);
           DataInputStream in = new DataInputStream(isr);

           if(!inputFile.exists()){

                   Log.v("FILE","InputFile not available");

            }
           else
           {
               while((line = in.readLine()) != null)
               {
                   ........ //parse 
               }
           }              

(顺便说一下,我在/ dir dir之外遇到了这个问题,在搜索时我看到了这个帖子)