Found 9297 Articles for Object Oriented Programming

How to upload a file using JSP?

Arjun Thakur
Updated on 30-Jul-2019 22:30:25

263 Views

Click the Below link to Know how to Upload a file Using JSPhttps://www.tutorialspoint.com/jsp/jsp_file_uploading.htm

What is a pageContext Object in JSP?

Chandu yadav
Updated on 30-Jul-2019 22:30:25

1K+ Views

The pageContext object is an instance of a javax.servlet.jsp.PageContext object. The pageContext object is used to represent the entire JSP page.This object is intended as a means to access information about the page while avoiding most of the implementation details.This object stores references to the request and response objects for each request. The application, config, session, and out objects are derived by accessing attributes of this object.The pageContext object also contains information about the directives issued to the JSP page, including the buffering information, the errorPageURL, and page scope.The PageContext class defines several fields, including PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, and APPLICATION_SCOPE, ... Read More

What is a config Object in JSP?

Arjun Thakur
Updated on 30-Jul-2019 22:30:25

358 Views

The config object is an instantiation of javax.servlet.ServletConfig and is a direct wrapper around the ServletConfig object for the generated servlet.This object allows the JSP programmer access to the Servlet or JSP engine initialization parameters such as the paths or file locations etc.The following config method is the only one you might ever use, and its usage is trivial −config.getServletName();This returns the servlet name, which is the string contained in the element defined in the WEB-INF\web.xml file.

How to write a switch statement in a JSP page?

Samual Sam
Updated on 30-Jul-2019 22:30:25

2K+ Views

Following is the example of using a switch statement within a JSP page. Live Demo           SWITCH...CASE Example                   The above code will generate the following result −It's Wednesday.

How to create a Hit Counter in JSP?

Ankith Reddy
Updated on 30-Jul-2019 22:30:25

144 Views

Click the Below link to know how to create a hit Counter in Jsphttps://www.tutorialspoint.com/jsp/jsp_hits_counter.htm

What is an application Object in JSP?

George John
Updated on 30-Jul-2019 22:30:25

329 Views

The application object is direct wrapper around the ServletContext object for the generated Servlet and in reality an instance of a javax.servlet.ServletContext object.This object is a representation of the JSP page through its entire lifecycle. This object is created when the JSP page is initialized and will be removed when the JSP page is removed by the jspDestroy() method.By adding an attribute to application, you can ensure that all JSP files that make up your web application have access to it.

How to delete Session data in JSP?

Ankith Reddy
Updated on 30-Jul-2019 22:30:25

4K+ Views

When you are done with a user's session data, you have several options −Remove a particular attribute − You can call the public void removeAttribute(String name) method to delete the value associated with the particular key.Delete the whole session − You can call the public void invalidate() method to discard an entire session.Setting Session timeout − You can call the public void setMaxInactiveInterval(int interval) method to set the timeout for a session individually.Log the user out − The servers that support servlets 2.4, you can call logout to log the client out of the Web server and invalidate all sessions ... Read More

Please share a working example of session maintenance in JSP.

George John
Updated on 30-Jul-2019 22:30:25

234 Views

This example describes how to use the HttpSession object to find out the creation time and the last-accessed time for a session. We would associate a new session with the request if one does not already exist.           Session Tracking                   Session Tracking                         Session info          Value     ... Read More

What methods of session object is used frequently in JSP and for what purpose?

Chandu yadav
Updated on 30-Jul-2019 22:30:25

213 Views

Here is a summary of important methods available through the session object −Sr.No.Method & Description1public Object getAttribute(String name)This method returns the object bound with the specified name in this session, or null if no object is bound under the name.2public Enumeration getAttributeNames()This method returns an Enumeration of String objects containing the names of all the objects bound to this session.3public long getCreationTime()This method returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.4public String getId()This method returns a string containing the unique identifier assigned to this session.5public long getLastAccessedTime()This method returns the last ... Read More

How can we maintain session between Web Client and Web Server?

Arjun Thakur
Updated on 30-Jul-2019 22:30:25

1K+ Views

Following are the few options to maintain the session between the Web Client and the Web Server −CookiesA webserver can assign a unique session ID as a cookie to each web client and for subsequent requests from the client they can be recognized using the received cookie.This may not be an effective way as the browser at times does not support a cookie. It is not recommended to use this procedure to maintain the sessions.Hidden Form FieldsA web server can send a hidden HTML form field along with a unique session ID as follows −This entry means that, when the ... Read More

Advertisements