日期:2014-05-20  浏览次数:20656 次

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();
    }