In my servlet I gave both out.print and out.write. but both prints in the browser.
out.print
out.write
What is the exact difference between these two and when
One more difference is out.write(-) method just write data or object to browser like a file. You can not write any statement like out.write(10*20); but we do this with out.print(10*20);