java - How to display 10000 digits in Eclipse console? -


   stringbuilder sb = new stringbuilder();      for(int =0; i<8000; i++){         sb.append("5");     }       biginteger bi = new biginteger(sb.tostring());     system.out.println(bi); 

i'm unable display such huge number on console(using eclipse). also, getting timeout huge numbers. kindly in displaying huge numbers on console.

in preferences of eclipse, go

window > preferences > run/debug > console  

uncheck option

 "limit console output" 

that allows print unlimited lines. if want limit lines ...use option

"console buffer size" 

enter image description here


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -