JSP cyclically outputs all values in the Session

Source: Internet
Author: User

I am a Java cainiao. I recently learned from a Web project. When I modified the pages designed by others, I didn't know what values were in the Session at the beginning, at the end, only the following policy is obtained. All values in the Session are output to the console. The specific method is as follows:
Enumeration e = session. getAttributeNames ();
String temp;
System. out. println ("all attributes and values of the Session are output cyclically below :");
For (; e. hasMoreElements ();){
Temp = (String) e. nextElement ();
System. out. println (temp + "=" + (String) session. getAttribute (temp ));
}
 
Note that not all values in the Session can be converted to strings. Therefore, when the Session attribute value is an object that cannot be converted to a String, an error occurs, in this case, we recommend that you only output the attribute name in the Session and determine which one to call directly in the program. In this case, replace row 6th:
System. out. println (temp );

Author: "Three elder brother's technical path"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.