long
0
Q:

stringbuilder append new line

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"));
2

New to Communities?

Join the community