what is difference between JspWriter and PrintWriter?

后端 未结 1 928
北恋
北恋 2021-01-21 06:28

what is difference between JspWriter and PrintWriter ?

相关标签:
1条回答
  • 2021-01-21 06:52

    From the javadoc:

    This abstract class emulates some of the functionality found in the java.io.BufferedWriter and java.io.PrintWriter classes, however it differs in that it throws java.io.IOException from the print methods while PrintWriter does not.

    The JspWriterImpl of tomcat delegates the writing to the PrintWriter obtained from the response.

    0 讨论(0)
提交回复
热议问题