防止SQL注入
public class PreparedStatementUserLoginPart {
public static void main(String[] args) throws SQLException, ClassNotFoundException {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入账号");
String account = scanner.nextLine();
System.out.println("请输入密码");
String password = scanner.nextLine();
Class.forName("com.mysql.cj.jdbc.Driver");
Properties info = new Properties();
info.put("user", "root");
info.put("password", "123456");
Connection connection = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test", info);
String sql = "select * from test.t_user where account = ? and password = ?";
PreparedStatement prepareStatement = connection.prepareStatement(sql);
prepareStatement.setObject(1, account);
prepareStatement.setObject(2, password);
ResultSet resultSet = prepareStatement.executeQuery();
if (resultSet.next()){
System.out.println("登录成功!");
}else {
System.out.println("用户名或密码错误!");
}
resultSet.close();
prepareStatement.close();
connection.close();
}
}
运行结果
请输入账号
root
请输入密码
' or '1' = '1
用户名或密码错误!
Process finished with exit code 0