3 回答

TA貢獻(xiàn)1806條經(jīng)驗 獲得超8個贊
新創(chuàng)建出來的文件,和你直接指定一個已存在的文件一樣,只要有這個文件,就可以向其寫內(nèi)容了。這個時候指定IO的輸出就可以寫。

TA貢獻(xiàn)1785條經(jīng)驗 獲得超8個贊
//寫入代碼 str寫入文件的數(shù)據(jù) file文件
private static boolean write(String str, File file) {
FileOutputStream fo = null;
try {
if(!file.getParentFile().exists())
file.getParentFile().mkdirs();
if (!file.exists())
file.createNewFile();
if (str == null)
str = "";
fo = new FileOutputStream(file.getPath(), false);
str += "\r\n";
OutputStreamWriter osw = new OutputStreamWriter(fo, "UTF-8");
osw.write(str);
osw.flush();
return true;
} catch (Exception e) {
log.error(e.getMessage(),e);
return false;
} finally {
if (fo != null)
try {
fo.close();
} catch (IOException e1) {
log.error(e1.getMessage(),e1);
}
}
}
添加回答
舉報