package com.javaniu;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

/**
 * 向文件尾插入内容
 * 
 * @author javaniu
 * 
 */
public class AppendFile {

	public static void main(String[] args) {
		try {
			String data = "插入到文件尾的内容";

			File file = new File("javaio-appendfile.txt");

			// if file doesnt exists, then create it
			if (!file.exists()) {
				file.createNewFile();
			}

			// 参数true为append模式
			FileWriter fileWritter = new FileWriter(file.getName(), true);
			BufferedWriter bufferWritter = new BufferedWriter(fileWritter);
			bufferWritter.write(data);
			bufferWritter.close();

			System.out.println("Done");

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
最近下载更多
JoyKinG  LV19 2017年11月29日
最代码官方  LV168 2017年10月12日
rt  LV2 2014年7月18日
菜鸟战斗  LV23 2013年8月22日
最近浏览更多
sipm123  LV1 2023年3月5日
java小书童  LV18 2020年11月18日
1787899799  LV1 2020年7月22日
songsongkun  LV1 2020年6月7日
577217647  LV7 2020年4月20日
dafengche  LV8 2020年3月19日
手落弦崩  LV13 2020年2月28日
1078475819 2019年11月20日
暂无贡献等级
LaSra823 2019年11月5日
暂无贡献等级
奔跑d少年  LV1 2019年9月25日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友