我得到這個錯誤獲得FileNotFoundException異常/ EISDIR
java.io.FileNotFoundException: /data/data/com.example.app/cache/news.xml:打開失敗: EISDIR(是一個目錄)
使用此代碼
try {
File cache = ctx.getCacheDir();
String s = cache.getAbsolutePath() + File.separator + path;
File f = new File(s);
File pf = f.getParentFile();
if (pf != null) {
pf.mkdirs();
}
if ((pf.exists()) && (pf.isDirectory())) {
if ((!f.exists()) || (!f.isFile())) {
f.createNewFile();
}
if ((f.exists()) || (f.isFile())) {
FileOutputStream os = null;
os = new FileOutputStream(s, false);
if (os != null) {
SharedCode.sharedWriteTextFileToStream(str, os);
}
os.flush();
os.close();
}
}
}
catch (IOException e) {
String s = e.toString();
}
更新添加代碼刪除與所需文件名匹配的目錄(f any)+正確使用mkdirs似乎解決了這個問題。接受最接近的答案。
您是否聲明瞭'WRITE_EXTERNAL_STORAGE'權限? –
的路徑是否包含文件名? – giorashc
@giorasch是的它確實 – Tom