Java连接mysql初识

2021/7/16 2:05:54

本文主要是介绍Java连接mysql初识,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

package com.fmg.jdbc;
import java.sql.*;
import java.util.HashMap;
import java.util.Map;
import java.util.ResourceBundle;
import java.util.Scanner;

public class ConnectMySQL {
    public static void main(String[] args) {
        // 初始化UI
        Map<String, String> userInfo = init();
        // 校验登录
        Boolean isLoginSuccess = CheckLogin(userInfo);
        // 结果
        System.out.println(isLoginSuccess ? "登录成功" : "登录失败");
    }

    /**
     *
     * @param userInfo hashMap , 包含用户名, 密码
     * @return boolean true:登录成功 false: 登录失败
     */
    private static Boolean CheckLogin(Map<String, String> userInfo) {
        // 返回值
        boolean hasUser = false;
        // 读取配置信息
        ResourceBundle resourceBundle = ResourceBundle.getBundle("properties/db");
        String Driver = resourceBundle.getString("driver");
        String db = resourceBundle.getString("db");
        String dbUsername = resourceBundle.getString("username");
        String dbPassword = resourceBundle.getString("password");
        // 登录信息, 查表校验
        String username = userInfo.get("username");
        String password = userInfo.get("password");
        Connection conn = null;
        Statement stat = null;
        ResultSet rs = null;
        String sql = "select * from t_user where username = '" + username + "' and password = '" + password + "'";
        try {
            Class.forName(Driver);
            conn = DriverManager.getConnection(db, dbUsername, dbPassword);
            stat =  conn.createStatement();
            rs = stat.executeQuery(sql);
            if(rs.next()){
                hasUser = true;
            }
            return hasUser;
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (rs != null) {
                try {
                    rs.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (stat != null) {
                try {
                    stat.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
            if (conn != null) {
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return false;
    }

    /**
     *  利用Scanner对象获取用户的用户名和密码
     * @return 用户输入的用户名和密码
     */
    private static Map<String, String> init() {
        Scanner s = new Scanner(System.in);
        System.out.print("请收入用户名:");
        String username = s.nextLine();
        System.out.print("请输入密码");
        String password = s.nextLine();
        Map<String, String> userInfo = new HashMap();
        userInfo.put("username", username);
        userInfo.put("password", password);
        return userInfo;
    }
}

 



这篇关于Java连接mysql初识的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程