提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
要将新行追加到StringBuffer,请使用StringBuffer类的append方法。
public class Main { public static void main(String args[]){//来 自 NowJava.com - 时代Java //create StringBuffer object StringBuffer sbf = new StringBuffer("This is the first line."); sbf.append(System.getProperty("line.separator")); sbf.append("This is second line."); System.out.println(sbf); } }