What is the difference between JspWriter and PrintWriter
Answer Posted / toharpreet
Including basic differences also
1) Package Difference
One is in IO and other is in java x packages
JSPWriter - package javax.servlet.jsp;
PrintWriter - package java.io;
2) Type Differences
One is Abstract class other is class
public class PrintWriter extends Writer {
public abstract class JspWriter extends Writer {
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Can you refresh servlet in client and server-side automatically?
Difference between get and post in java servlets?
What are the different types of servlets?
How can you use a servlet to generate a plain text instead of html?
What do you mean by httpservlet and how it is different from the genericservlet?
What is called servlet mapping?
Define context initialization parameters.
What is servlet and its life cycle?
What do you mean by request dispatcher in servlet?
What is servlet in tomcat?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
What is http servlet in java?
What is the
What is a server side include (ssi)
Whether we can get deadlock situation in servlets?