2011年2月9日 星期三

[Android] 寫入檔案到sd卡

使用
try{

String directory = "/mnt/sdcard/";
String filename = "text.txt";
File file = new File(directory, filename);
outputStream = new FileOutputStream(file);
}

catch (FileNotFoundException ex) {
            Log.w(TAG, ex);
            return null;
}


總是會有exception-FileNotFoundException

create file會失敗

如果你想要對sd卡寫入檔案
你需要在AndroidManifest.xml中加入

允許你的應用程式可以寫入資料到sd卡中


Reference:
http://www.cnmsdn.com/html/201012/1293359114ID8890_2.html

透過Facebook分享

沒有留言: