我正在尝试编写一个简单的程序,将文件写入外部存储并从中读取。以下是问题的描述:
1. 文件名 = "hello_files.txt" 包含文本 "hello world" 存储在/sdcard
.
2. 将数据写入文件后,可以看到文件adb
。
3. 但是,一旦将应用程序加载到手机上并使用第三方文件浏览器应用程序查看,文件 hello_files.txt 中似乎没有写入任何文本。似乎写入部分有问题我的程序,但我不知道是什么。我在下面给出了代码的两个部分,用于编写和阅读。
从文件读取的代码:
public void readFromFile() {
//Step 1. Check if the storage is available.
boolean mStorageAvailable;
boolean mStorageReadWrite;
String state = Environment.MEDIA_MOUNTED;
Log.v(this.toString(), "State of media = " + state);
if(Environment.MEDIA_MOUNTED.equals(state)) {
Log.v(this.toString(), "Media is mounted.");
mStorageAvailable = true;
mStorageReadWrite = true;
File dir = Environment.getExternalStorageDirectory();
String fileName = dir + "/" + file;
Log.v(this.toString(), "Reading from file = " + fileName);
File f = new File(dir, file);
FileReader fr = null;
try {
fr = new FileReader(f);
Log.v(this.toString(), "Wrapping a buffered reader around file reader.");
BufferedReader bufRead = new BufferedReader(fr, 8192);
//Log.v(this.toString(), bufRead.toString());
String line;
try {
line = bufRead.readLine();
Log.v(this.toString(), "Line read = " + line);
Toast.makeText(getApplicationContext(), line, Toast.LENGTH_SHORT).show();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.v(this.toString(), "IOException found in reading line from file.");
}
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
Log.v(this.toString(), "File not found for reading.");
}
}
}
写入文件的代码是:
public void writeToFile() {
//Step 2. Check if external storage is mounted.
boolean mStorageExists;
boolean mStorageReadWrite;
String state = Environment.getExternalStorageState();
Log.v(this.toString(), "External media mounted state = " + state);
if(Environment.MEDIA_MOUNTED.equals(state)) {
//media is mounted.
//Mounted storage is read/write.
//Write to the file.
mStorageExists = true;
mStorageReadWrite = true;
Log.v(this.toString(), "Going to write to a file.");
//get directory.
File dir = Environment.getExternalStorageDirectory();
Log.v(this.toString(), "Root directory = " + dir.getAbsolutePath());
String fileName = dir.getAbsolutePath() + "/" + file;
Log.v(this.toString(), "File to write to is present at " + fileName);
File f = new File(dir, file);
FileOutputStream fos;
try {
fos = new FileOutputStream(f);
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
Log.v(this.toString(), "File not found.");
}
try {
fos = openFileOutput(file, MODE_WORLD_READABLE | MODE_WORLD_WRITEABLE);
Log.v(this.toString(), "Bytes of the string = " + str.getBytes().toString());
fos.write(str.getBytes());
//Log.v(this.toString(), "Local path = ");
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
Log.v(this.toString(), "File not found!!");
e.printStackTrace();
} catch (IOException e) {
Log.v(this.toString(), "IO Exception.");
e.printStackTrace();
}
} else if(Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
//media is mounted but read only.
mStorageExists = true;
mStorageReadWrite = false;
Log.v(this.toString(), "The media is read-only mounted.");
} else if( (Environment.MEDIA_NOFS.equals(state)) || (Environment.MEDIA_REMOVED.equals(state)) || (Environment.MEDIA_UNMOUNTED.equals(state))) {
mStorageExists = false;
mStorageReadWrite = false;
Log.v(this.toString(), "There is some problem with the media.");
}
}
日志(来自Log
详细标签):
10-23 10:26:19.444: V/com.sriram.fileops.MainActivity$2@44e95cc0(466): Read from file button clicked.
10-23 10:26:19.444: V/com.sriram.fileops.MainActivity@44e90428(466): State of media = mounted
10-23 10:26:19.444: V/com.sriram.fileops.MainActivity@44e90428(466): Media is mounted.
10-23 10:26:19.444: V/com.sriram.fileops.MainActivity@44e90428(466): Reading from file = /sdcard/hello_files.txt
10-23 10:26:19.453: V/com.sriram.fileops.MainActivity@44e90428(466): Wrapping a buffered reader around file reader.
10-23 10:26:19.453: V/com.sriram.fileops.MainActivity@44e90428(466): Line read = null