文件i / o无法正常工作

时间:2012-11-22 02:02:34

标签: android file-io

我正在尝试在android上测试一个简单的文件i / o程序,其中我输入了一些文本 EditText,当我单击“保存”按钮时,它会将内容写入文件中。当我单击加载按钮时,它将内容加载回EditText。

这是我的代码---

public class Activity2 extends Activity {

private EditText textBox;
private static final int READ_BLOCK_SIZE = 100;


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.layout2);

textBox = (EditText) findViewById(R.id.txtText1);

Button saveBtn = (Button) findViewById(R.id.btnSave);
Button loadBtn = (Button) findViewById(R.id.btnLoad);

saveBtn.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {

String str = textBox.getText().toString();

try
{

PrintWriter PR=new PrintWriter(new File("text1.txt"));

PR.write(str);
PR.flush();
PR.close();

//textBox.setText("");
//---display file saved message---
Toast.makeText(getBaseContext(),
"File saved successfully!",
Toast.LENGTH_SHORT).show();
//---clears the EditText---
textBox.setText("");
}

catch (IOException ioe)
{
 ioe.printStackTrace();
}

}

});


loadBtn.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {

try
{
  File f=new File("text1.txt");

  BufferedReader BR=new BufferedReader(new FileReader(f));

  String txt="";
      String str;    

  while((str=BR.readLine())!=null)
  {
      txt+=str;

  }

//---set the EditText to the text that has been
// read---
textBox.setText(txt);

BR.close();

Toast.makeText(getBaseContext(),
"File loaded successfully!",
Toast.LENGTH_SHORT).show();


}
catch (IOException ioe) {
ioe.printStackTrace();
}
}
});
}
}

`

为什么不起作用?在此先感谢您的帮助。任何解释都将受到高度赞赏。

1 个答案:

答案 0 :(得分:5)

使用new File("text1.txt")作为输出在Android上不起作用。当前工作的directoy总是/,这对您的应用程序来说是不可写的。使用

File f = new File(Environment.getExternalStorageDirectory(), "text1.txt");

getExternalStorageDirectory()是新手机的内部存储空间。

如果要将数据存储在app-private文件夹中,您的应用Context有几个路径可供使用。来自Environment的路径位于公共场所,您可以使用文件管理器

简单地读取数据

不要忘记添加

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

如果你想写这些公共路径