netbeans连接数据库代码运行出现http500错误

代码无报错<%@pagecontentType="text/html"pageEncoding="UTF-8"import="java.sql.*"import="jav... 代码无报错
<%@page contentType="text/html" pageEncoding="UTF-8" import="java.sql.*" import="java.lang.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%

String username = request.getParameter("username");
String password = request.getParameter("userpass");
Connection con = null;
Statement st = null;
ResultSet rs = null;
if (username.equals("")) {
response.sendRedirect("index.jsp");
}
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "yamao120");

st = con.createStatement();
String sql = "select*from student where username='" + username+ "'";
rs = st.executeQuery(sql);
if (rs.next()) {
//用户判断密码是否正确
String sql1 = "select*from student where password='" + password + "'";
rs = st.executeQuery(sql1);
if (rs.next()) {
response.sendRedirect("main.jsp");
} else {
response.sendRedirect("index.jsp");
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
rs.close();
st.close();
con.close();
}
%>
</body>
</html>
运行之后是下面这个图
展开
 我来答
zjf_kb
2013-06-26 · 超过14用户采纳过TA的回答
知道答主
回答量:33
采纳率:0%
帮助的人:33.4万
展开全部
那个图片上提示很清楚,null异常啊,某个值为null但是继续使用了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式