2008年7月3日 星期四

[Java] 寫入文字到檔案中 FileWriter

取得要寫入文字的檔案
FileWriter fw = new FileWriter("G:/Counter.txt");
寫入字串"Num"
fw.write("Num");
fw.close()

沒有留言: