JDBC练习

package erchou;


import java.io.IOException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;


import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


public class GetInfo extends HttpServlet {




public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
          doPost(request, response);
}



public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {


request.setCharacterEncoding("utf-8");
response.setCharacterEncoding("utf-8");

String name = request.getParameter("name");

String password = request.getParameter("password");

System.out.println("姓名:"+name + "密码:"+password);

Connection connection = null;

PreparedStatement statement = null;

ResultSet result = null;

connection = JdbcUtil.getConnection();

String sql = "SELECT *FROM userr WHERE userName = ?";

try {
statement = connection.prepareStatement(sql);

statement.setString(1, name);

result = statement.executeQuery();

if(result.next()){
response.getWriter().write("<html><head><meta charset = 'utf-8'></head><body>该用户已经存在<body></html>");
}else{
sql = "INSERT userr(userName, PASSWORD)VALUES(?,?);";
 
statement = connection.prepareStatement(sql);

statement.setString(1, name);

statement.setString(2, password);
 
statement.executeUpdate();
 
response.getWriter().write("<html><head><meta charset = 'utf-8'></head><body>注册成功!<body></html>");
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}


}


//附加html页面

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
     <meta charset = "utf-8" />


  </head>
  <body>
     <form action="http://localhost:8080/MyIndex/servlet/GetInfo" method="POST">
                       用户名: <input type = "text" value = "请输入用户名" name="name"/>
                       密    码: <input type = "password" name = "password"/>
                       <input type = "submit" value = "提交">
     </form>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值