用户登录业务简易实现(IDEAJava实现)(练习JDBC)

使用IDEA开发JDBC代码配置驱动
在这里插入图片描述
在这里插入图片描述

注:1.提前下载好jar包

​ 2.不是配置一次就行了,每次新建一个模块,都需要再次配置。

创建一个数据库,模拟一个用户信息表。

create database userdata;
create table t_user(username varchar(255),userpwd varchar(255));
insert into t_user(username,userpwd) values('zhangsan',123);

在这里插入图片描述

JDBC编程六步

  • 注册驱动

  • 获取连接

  • 获取数据库操作对象

  • 执行sql语句

  • 处理查询结果集、

  • 结束资源

具体代码:

public class userLogin {
    public static void main(String[] args) {
        // 初始化界面,返回用户的信息。
        Map<String, String> userLoginInfo = initUI();
        // 验证用户名和密码
        boolean loginSuccess = login(userLoginInfo);
        System.out.println(loginSuccess ? "Success" : "False");
    }

    private static boolean login(Map<String, String> userLoginInfo) {
        // 打一个标记
        boolean loginSuccess = false;

        Connection conn = null;
        Statement stmt = null;
        ResultSet rs = null;

        try {
            // 1.注册驱动
            Class.forName("com.mysql.cj.jdbc.Driver");
            // 2.获取连接
            conn = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/userdata",
                    "root", "root");
            // 3.获取数据库操作对象
            stmt = conn.createStatement();
            // 4.执行sql语句
            String sql = "select * from t_user where username = '" + userLoginInfo.get("userLoginName")
                    + "' and userpwd = '" + userLoginInfo.get("userLoginPwd") + "'";
            // 5.处理查询结果集
            rs = stmt.executeQuery(sql);
            if (rs.next()) {
                loginSuccess = true;
            }
        } catch (ClassNotFoundException | SQLException e) {
            e.printStackTrace();
        } finally {
            // 6.关闭资源
            if (rs != null) {
                try {
                    rs.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (stmt != null) {
                try {
                    stmt.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return loginSuccess;
    }

    private static Map<String, String> initUI() {
        // 获取用户信息
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入账号:");
        String userLoginName = sc.nextLine();
        System.out.println("请输入密码:");
        String userLoginPwd = sc.nextLine();
        Map<String, String> userLoginInfo = new HashMap<>();
        // 将用户信息存入Map中
        userLoginInfo.put("userLoginName", userLoginName);
        userLoginInfo.put("userLoginPwd", userLoginPwd);
        return userLoginInfo;
    }
}

不足:存在sql注入的问题

评论 28
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一切随缘~~~

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值