1、写入文件 覆盖
@Override
public boolean addFile(String string,String path) {
PrintStream stream=null;
try {
stream=new PrintStream(path);//写入的文件path
stream.print(string);//写入的字符串
return true;
} catch (FileNotFoundException e) {
e.printStackTrace();
}
return false;
}
2、非覆盖的写入文件,在原有的文件内容后面继续写入
@Override
public boolean addFile(String string,String path) {
//文件的续写
FileWriter fw = null;
try {
fw = new FileWriter(path,true);
//写入换行
fw.write("\r\n");//Windows平台下用\r\n,Linux/Unix平台下用\n
//续写一个hello world!
fw.write(string);
fw.close();
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}