String fileName = "IK_XPO_mock.txt"; System.out.println(fileName); BufferedWriter fw = null; try { File file = new File("exprtDIR"+fileName); //判斷目標文件所在的目錄是否存在 if(!file.getParentFile().exists()) { //若是目標文件所在的目錄不存在,則建立父目錄 System.out.println("目標文件所在目錄不存在,準備建立它!"); if(!file.getParentFile().mkdirs()) { System.out.println("建立目標文件所在目錄失敗!"); } } fw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file, true), "UTF-8")); // 指定編碼格式,以避免讀取時中文字符異常 //寫入內容 fw.append(AudioUrl); fw.flush(); // 所有寫入緩存中的內容 } catch (Exception e) { e.printStackTrace(); } finally { if (fw != null) { try { fw.close(); } catch (IOException e) { e.printStackTrace(); } } }