我正在尝试在会话范围中设置值,但它没有设置请找到问题异常即将到来:
<%String name=request.getParameter("name");%><% if(request.getParameter("name").equals(name)){session.setAttribute("EmployeeById",name);}%>
在这里你可以找到我想在会话中设置按钮值的代码,我正在使用其他jsp。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml" %>
<html>
<head>
<script type="text/javascript">
function popuponclick() {
var mywindow = window.open("file.jsp", "file", "status=1,width=350,height=150");
}
</script>
</head>
<body>
<form name="form1">
<%String name = request.getParameter("name");%>
<% if (request.getParameter("name").equals(name)) {
session.setAttribute("EmployeeById", name);
}
%>
<table>
<tr>
<td><input type="submit" onclick="popuponclick()" value="GetEmployeeById" name="name"/>
<input type="hidden" name="GetEmp" value="1"></td>
</tr>
<tr>
<td><input type="submit" onclick="popuponclick()" value="GetEmployeeByname" name="name1"></td>
</tr>
</table>
</form>
</body>
</html>
我的第二个.jsp是我通过会话范围获取值的地方
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"%>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql"%>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml"%>
<%@page
import="com.nousinfo.tutorial.employee.service.model.bo.EmployeeBO"%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<%
String attributeValue = (String)session.getAttribute("EmployeeById");
out.println(attributeValue);
%>
<body>
<% if ("GetEmployeeById".equals(attributeValue)) { %>
<div>
<table>
<tr>
<td>GetEmployeeByName</td>
</tr>
<tr>
<td><input type="text" name="GetEmployeeByName"/></td></tr>
</table>
</div>
<% } else { %>
<div>
<table>
<tr>
<td>GetEmployeeById</td>
</tr>
<tr>
<td><input type="text" name="GetEmployeeById"/></td></tr>
</table>
</div>
<% } %>
<table>
<tr>
<td><input type="submit" name="submit" value="find"></td>
</tr>
</table>
</body>
</html>
答案 0 :(得分:1)
第一件事:
你是否意识到即使你没有得到异常,这段代码也没有意义?您正在获取name参数,然后再次获取它并使用相同的值进行检查。此条件始终为true
。
第二件事:
代码如:
String name = request.getParameter("name");
session.setAttribute("EmployeeById", name);
应该在servlet中使用,而不是在JSP页面中使用。在JSP页面中,要从请求,会话或应用程序范围获取值,您可以使用EL。
例如:
${requestScope['name']}
这是在JSP页面中获取request属性的正确方法。
您获得NPE
的原因是因为您的JSP页面中的请求尚未提供且为null
。首先,您需要检查请求是否不是null
,如果不是,请执行此操作。
同时查看SO Servlets Wiki页。
答案 1 :(得分:0)
试试这个&lt;%! String name = request.getParameter(“name”);%&gt;