如何查看书面文字文件的路径?

时间:2015-04-22 12:46:35

标签: java android io

我想在我的Android应用程序上看到带有textView的“abc.txt”的路径。我怎么能这样做?

OutputStreamWriter out = new OutputStreamWriter(openFileOutput("abc.txt", Context.MODE_WORLD_READABLE));
        BufferedWriter bf = new BufferedWriter(out); 
bf.write("hello world");
bf.close();

编辑:塑造像路径; emulated / legancy / android / data / com.hayro.project1 / files / abc.txt或其他东西。

1 个答案:

答案 0 :(得分:1)

File f = new File("abc.txt");
OutputStreamWriter out = new OutputStreamWriter(openFileOutput("abc.txt", Context.MODE_WORLD_READABLE));
    BufferedWriter bf = new BufferedWriter(out); 
bf.write("hello world");
bf.close();
System.out.println(f.getAbsolutePath());

我只使用System.out作为示例。您只需使用f.getAbsolutePath()获取路径,然后将其分配给适当的变量。