java将字符串str保存在txt中,txt里面内容,str放在txt最后一行的下面
4个回答
展开全部
/**
* 添加写入
* @param path 写入文件路径
* @param str 写入内容
* @return
* @throws IOException
*/
public boolean writerAdd(String path,String str) throws IOException {
File file = new File(path);
BufferedOutputStream bout = null;
try {
OutputStream out = new FileOutputStream(file,true);
bout = new BufferedOutputStream(out);
bout.write(str.getBytes());
bout.flush();
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
if (bout != null) {
bout.close();
}
}
return true;
}
* 添加写入
* @param path 写入文件路径
* @param str 写入内容
* @return
* @throws IOException
*/
public boolean writerAdd(String path,String str) throws IOException {
File file = new File(path);
BufferedOutputStream bout = null;
try {
OutputStream out = new FileOutputStream(file,true);
bout = new BufferedOutputStream(out);
bout.write(str.getBytes());
bout.flush();
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
if (bout != null) {
bout.close();
}
}
return true;
}
展开全部
PrintWriter pw = null;
String content ="this is test";
FileOutputStream fos = new FileOutputStream("c:\\1.txt", true);//续写
pw = new PrintWriter(fos);
pw.println(content);
pw.close();
这样就可以续写到指定文件的最后一行
String content ="this is test";
FileOutputStream fos = new FileOutputStream("c:\\1.txt", true);//续写
pw = new PrintWriter(fos);
pw.println(content);
pw.close();
这样就可以续写到指定文件的最后一行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
JDK的帮助文档啊 文件输出输入流 看看嘛 file
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
实现追加?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询