在下面的代碼中,我想創建一個SD卡中的文件。但它沒有給出任何有效的輸出。僅顯示hello world ...在哪裏顯示「文件創建」消息以及文件的存儲位置?android未能顯示結果
package com.read;
import java.io.FileOutputStream;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
public class read extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String FILENAME = "hello_file";
String string = "hello world!";
try{
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
}catch(Exception e){}
System.out.println("File created");
}
}
它的工作原理..謝謝 – vnshetty 2011-02-24 07:19:53