What is the exact difference between out.write() and out.print()

后端 未结 9 640
情深已故
情深已故 2020-12-13 20:49

In my servlet I gave both out.print and out.write. but both prints in the browser.

What is the exact difference between these two and when

9条回答
  •  余生分开走
    2020-12-13 21:44

    PrintWriter's implementation communicates the difference better than javadoc

    public void print(String s) {
        if (s == null) {
            s = "null";
        }
        write(s);
    }
    

提交回复
热议问题