您好,登錄后才能下訂單哦!
這篇文章主要介紹了使用File.createNewFile報錯No such file的解決方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
這種問題可能是各家手機廠商定制造成的,我用的測試機都沒有出現(xiàn)這種創(chuàng)建異常的情況,新出來的Vivo、OPPO有這種情況,以下是修改后的代碼塊:
File.createNewFile()方法需要在創(chuàng)建文件目錄之后才能成功,否則會報No such file的錯誤,最終造成文件空指針
String storageDir = null;
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
storageDir = Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES).getAbsolutePath()+"/axin/image/";
}else{
storageDir = App.getContext().getExternalFilesDir(Environment.DIRECTORY_PICTURES).getAbsolutePath()+"/image/";
}
//使用createTempFile方式必須先創(chuàng)建目錄,否則會出現(xiàn)No such file ..
File dir=new File(storageDir);
if(!dir.exists()){
dir.mkdirs();
}
File image = null;
LogUtils.d("create before-->"+(dir.getAbsolutePath()));
try {
image = File.createTempFile(
getDeafultFileName(), /* prefix */
".jpg", /* suffix */
dir /* directory */
);
} catch (IOException e) {
e.printStackTrace();
}
LogUtils.d("create after-->"+(image==null?"null":image.getAbsolutePath()));
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享使用File.createNewFile報錯No such file的解決方法內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。