Java BufferedWriter newLine()方法
java.io.BufferedWriter.newLine() 生成换行符。
1 语法
public void newLine()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.BufferedWriter.newLine()方法的例子
*/
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.StringWriter;
public class Demo {
public static void main(String[] args) throws IOException {
StringWriter sw =null;
BufferedWriter bw = null;
String s = "Hello World!!";
try {
// create new string writer
sw = new StringWriter();
// create new buffered writer
bw = new BufferedWriter(sw);
// write string sequence to buffered writer
bw.write(s, 0, 5);
// write new line to the buffered writer
bw.newLine();
// write the next string sequence to buffered writer
bw.write(s, 6, s.length()-6);
// releases all bytes to the underlying stream
bw.flush();
// print
System.out.print(sw.getBuffer());
} catch(Exception e) {
// if any I/O error occurs
e.printStackTrace();
} finally {
// releases system resources from the streams
if(sw!=null)
sw.close();
if(bw!=null)
bw.close();
}
}
}
输出结果为:
Hello
World!!
热门文章
优秀文章