当前位置: 代码迷 >> J2SE >> Write a line separator to an open stream. How and what to use? (via TranXcode)解决思路
  详细解决方案

Write a line separator to an open stream. How and what to use? (via TranXcode)解决思路

热度:116   发布时间:2016-04-24 12:19:57.0
Write a line separator to an open stream. How and what to use? (via TranXcode)
有一道scjp的题,说java.io.FileWriter中有一个方法可以Write a line separator to an open stream。

请问下是哪个方法,有个例子最好了。

API里面看到:

从类 java.io.OutputStreamWriter 继承的方法
close, flush, getEncoding, write, write, write

从类 java.io.Writer 继承的方法
append, append, append, write, write

不确定是哪个。请指教。

非常感谢。

------解决方案--------------------
write
------解决方案--------------------
写程序测试一下
------解决方案--------------------
Java code
public static void main(String[] a) throws IOException {        FileWriter fw = new FileWriter("aa.txt");        String str = System.getProperty("line.separator");        fw.write("test");        fw.write(str);        fw.write("test");        fw.close();    }
  相关解决方案