Android的openFileOutput怎么创建不了文件?

刚刚在使用openFileOutput()时发现我创建的文件根本就找不到。
fos = openFileOutput("info1.txt", MODE_PRIVATE);
fos.write("德玛西亚".getBytes());
fos.close();
不知道是代码的问题还是安卓的问题,希望有人能帮帮我。先谢谢各位了。

http://www.cnblogs.com/elleniou/archive/2012/05/17/2505630.html

谢谢,已经解决了,是模拟器的问题。
现在碰到一个奇怪的问题。
System.out.println(reader.readLine());
Toast.makeText(this, reader.readLine(), 1).show();
这里我的system可以显示数据,但是我的Toast却显示是空白的,请问一般是什么情况,还请不吝赐教。

我用string name = reader.readLine();
Toast.makeText(this, name, 1).show();
还是显示空,显示不出来,不知道是哪里出错了

你是不是这样写的:
System.out.println(reader.readLine());
string name = reader.readLine();
Toast.makeText(this, name, 1).show();

楼主,我也遇到了和你一样的情况,问是怎么解决的?