1. 程式人生 > >字串追加寫入txt文字

字串追加寫入txt文字

        /***
	 * 檔案追加寫入字串
	 * 
	 * @param name 字串
	 *            
	 * @param path txt文字地址
	 *           
	 */
	public void fileWrite(String name, String path) {
		FileWriter fw = null;
		try {
			// 如果檔案存在,則追加內容;如果檔案不存在,則建立檔案
			File f = new File(path);
			fw = new FileWriter(f, true);
		} catch (IOException e) {
			e.printStackTrace();
		}
		PrintWriter pw = new PrintWriter(fw);
		pw.write(name + "\r\n");
		// pw.println("追加內容");
		pw.flush();
		try {
			fw.flush();
			pw.close();
			fw.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}