📅  最后修改于: 2022-03-11 14:58:58.004000             🧑  作者: Mango
StringBuilder r = new StringBuilder();
//It should be
r.append("\n");
//But I recommend you to do as below,
//beacuse it is system independent
r.append(System.getProperty("line.separator"));