在我的一个应用程序中,我在会话中设置了一个变量(字符串)。详细代码在我的一个 servlet 中。
HttpSession session = request.getSession();
String val1 = "http://abc.gmail.com/pp/hello.do?supplierId=894";
session.setAttribute("val1", val1);
现在我通过下面的代码在一个jsp中检索了会话属性的值。
<%
String val1 = (String) session.getAttribute("val1");
System.out.println("The value is-->>"+val1);
%>
但它只打印“http://abc.gmail.com/pp/hello.do?supplierId”
你能帮我解决这个错误吗?我希望 o/p 是“http://abc.gmail.com/pp/hello.do?supplierId=894”
谢谢, 苏拉夫