我有一个名为classes的包,其中包含x.java和y.java。 x.java:
public class x{
private int a;
private int b;
private String c;
private String d;
private String e;
private String f;
//And the fields are encapsulated.
}
y.java:
public class y{
private List<x> xs;
private int k1;
private int k2;
private String k3;
private String k4;
//And the fields are encapsulated.
}
z.JSP:
<%
usecase y = new y();
request.getSession().setAttribute("yy", y);
%>
<form action="aaa?id=1" method="POST">
<td>
<input type="text" name="bbb"/>
</td>
<td>
<input type="text" name="ccc"/>
</td>
<td>
<input type="submit" name="ddd"/>
</td>
</form>
aaa.java(Servlet - 在processRequest中):
PrintWriter out = response.getWriter();
try {
y yy = (y) request.getSession().getAttribute("yy");
String id = request.getParameter("id");
x s = new x();
s.setC(request.getParameter("bbb"));
b.setD(request.getParameter("ccc"));
if ("1".equals(id)) {
s.setE("l");
} else if ("2".equals(id)) {
s.setE("k");
}
yy.getXs().add(s);
response.sendRedirect("z.jsp");
} finally {
out.close();
}
这是代码。当我用断点观察一切顺利时,变量就会得到它们的价值。但在这一行:yy.getXs()。add(s);有一个错误,它没有重定向。你能帮帮我吗?
解决方案:将private List<x> xs;
替换为List<X> xs = new ArrayList<X>();
。非常感谢。
答案 0 :(得分:5)
大多数情况下,NullPointerException意味着您要取消引用null变量。我假设导致异常的行(z.java
中的第97行,如堆栈跟踪所示)是以下行:
yy.getXs().add(s);
然后它可能意味着两件事:
yy
为空yy.getXs()
返回的列表为空。使用调试程序识别问题,或在代码中添加日志记录跟踪。