java向文本文件中写入内容或追加新内容
2009-04-23 20:54:35 来源:WEB开发网 /**
* 向文本文件中写入内容或追加新内容,如果append为true则直接追加新内容,<br>
* 如果append为false则覆盖原来的内容<br>
*
* @param path
* @param content
* @param append
*/
public void writeFile(String path, String content, boolean append) {
File writefile;
try {
// 通过这个对象来判断是否向文本文件中追加内容
// boolean addStr = append;
writefile = new File(path);
// 如果文本文件不存在则创建它
if (writefile.exists() == false) {
writefile.createNewFile();
writefile = new File(path); // 重新实例化
}
FileOutputStream fw = new FileOutputStream(writefile);
System.out.PRintln("###content:" + content);
fw.write(content.getBytes());
fw.flush();
fw.close();
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
更多精彩
赞助商链接