java把数据到指定文件
Posted fc-shi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java把数据到指定文件相关的知识,希望对你有一定的参考价值。
String filename = "F:\test123.txt";
FileOutputStream stream = null;
OutputStreamWriter writer = null;
try {
stream = new FileOutputStream(filename, true);
writer = new OutputStreamWriter(stream);
writer.write("test");
writer.write("%!%");
writer.write("123");
writer.write(" ");
} catch (Exception e) {
e.getStackTrace();
}finally {
try {
writer.close();
stream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
以上是关于java把数据到指定文件的主要内容,如果未能解决你的问题,请参考以下文章