java.lang.nullpointerexception
小白求助,在编译servlet出现了如题的报错 代码如下 这里一个登录验证的处理 在线等纠结了我好久
//用户验证
package com.yxl;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class LoginCl extends HttpServlet{
public void doGet(HttpServletRequest req , HttpServletResponse res)
throws ServletException, IOException {
res.setContentType("text/html;charset=UTF-8");
//接受
String u = req.getParameter("username");
String p = req.getParameter("password");
if(u.equals("yxl")&&p.equals("123")){
//合法
res.sendRedirect("wel?uname="+u); //把username传递给wel界面
}else{
//不合法
res.sendRedirect("login");
}
}
public void doPost(HttpServletRequest req , HttpServletResponse res)
throws ServletException, IOException {
this.doGet(req,res);
}
} --------------------编程问答-------------------- 界 面 呢, --------------------编程问答-------------------- u或者p是null, 反过来写:
"yxl".equals(u) && "123".equals(p)
记住,用equals判断String时,常量一般写在前面,这样可以防止NullPointer --------------------编程问答--------------------
是要看报错界面吗
报错代码如下
HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report
message
description The server encountered an internal error that prevented it from fulfilling this request.
exception
java.lang.NullPointerException
com.yxl.LoginCl.doGet(LoginCl.java:26)
javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
note The full stack trace of the root cause is available in the Apache Tomcat/7.0.47 logs.
--------------------------------------------------------------------------------
Apache Tomcat/7.0.47 --------------------编程问答-------------------- 加个非空判断 --------------------编程问答--------------------
谢谢这个有用 我按照你说的改了 可是它就无法跳转到欢迎界面了 老是跳转到登录界面
我有三个java文件 一个是登录的 这个可以编译 还有一个是登录验证的 最后就是欢迎界面了 --------------------编程问答--------------------
我试下 --------------------编程问答--------------------
这个也有用 可是跳转后是个空白界面
补充:Java , Java EE