Below is the problem:
StringBuffer sbf = new StringBuffer();
for(var i=1;i<=1301;i++){
sbf.append(i);
}
System.out.println(sbf.toString());
printing empty but values are there inside
please see the values in below image
if we select stringbuffer object its shows empty but values are there you can observe
i am very strange to see this what is happening Can any one suggest solution for this