java - Java应用程序无法连接到MySQL数据库

标签 java mysql database swing

我是制作应用程序的新手,从未使用过数据库,但了解它的基础知识。 在互联网上找到了一个制作简单登录页面的代码,但返回的输出始终是“凭据不正确”。

这是“提交”按钮的代码。

 if(jTextField2.getText().length()==0)  // Checking for empty field
  JOptionPane.showMessageDialog(null, "Empty fields detected ! Please fill up all fields");
else if(jPasswordField1.getPassword().length==0)  // Checking for empty field
  JOptionPane.showMessageDialog(null, "Empty fields detected ! Please fill up all fields");
else{
   String user = jTextField2.getText();   // Collecting the input
   char[] pass = jPasswordField1.getPassword(); // Collecting the input
   String pwd = String.copyValueOf(pass);  // converting from array to string
   if(validate_login(user,pwd))
      JOptionPane.showMessageDialog(null, "Correct Login Credentials");        
   else
      JOptionPane.showMessageDialog(null, "Incorrect Login Credentials");
   }
}

这是验证登录的代码-

private boolean validate_login(String username,String password) {
    try{           
   Class.forName("com.mysql.jdbc.Driver");  // MySQL database connection
   Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mmtc_law?zeroDateTimeBehavior=convertToNull [root on Default schema]?" + "user=root&password=");     
   PreparedStatement pst = conn.prepareStatement("Select * from login where username=? and password=?");
   pst.setString(1, username); 
   pst.setString(2, password);
   ResultSet rs = pst.executeQuery();                        
   if(rs.next())            
       return true;    
   else
       return false;            
 }
catch(Exception e){
       e.printStackTrace();
   return false;
   }

这是我的 phpmyadmin 页面- enter image description here

当我输入用户名和密码作为“admin”时,输出仍然是“不正确的凭据”。 请帮忙。 提前致谢!

最佳答案

这显然是不正确的:

Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mmtc_law?zeroDateTimeBehavior=convertToNull [root on Default schema]?" + "user=root&password=");     

试试这个:

// Enter the root username and password or some credential that you know you can connect with
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mmtc_law", "root", "rootPassword");

让应用程序以 root 身份登录数据库是自找麻烦。我将创建一个新用户并仅授予应用程序所需的凭据。

你的代码有太多问题。一旦你开始工作,我建议重构它。当您看到 Java Swing 代码与数据库代码混合在一起时,这始终是一个不好的迹象。这样就没有层次感了。将数据访问层编写为基于接口(interface)的独立对象,您可以自行测试和部署。

您永远不应该在代码中使用硬连线数据库连接 URL 和凭据。它们应该被外部化。您也不应该创建连接。这些应该从连接池中获取。

更新:我刚刚在我的机器上本地运行这个类并连接到 MySQL 实例。如果您给它正确的参数,它也会为您工作。

这是连接器 JAR 的 Maven pom.xml 条目:

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>6.0.2</version>
    </dependency>

这是类(class):

package database;

import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.SQLException;

/**
 * Database utilities
 * Created by Michael
 * Creation date 5/3/2016.
 * @link https://stackoverflow.com/questions/36999860/mysql-driver-problems/37000276#comment61553720_37000276
 */
public class DatabaseUtils {

    public static final String DEFAULT_DRIVER = "com.mysql.cj.jdbc.Driver";
    public static final String DEFAULT_URL = "jdbc:mysql://localhost/your-database-here";
    public static final String DEFAULT_USERNAME = "root";
    public static final String DEFAULT_PASSWORD = "your-root-password-here";

    public static void main(String[] args) {
        Connection connection = null;
        try {
            connection = createConnection(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
            DatabaseMetaData meta = connection.getMetaData();
            System.out.println(String.format("Connected to %s version %s", meta.getDatabaseProductName(), meta.getDatabaseProductVersion()));
        } catch (ClassNotFoundException | SQLException e) {
            e.printStackTrace();
        } finally {
            close(connection);
        }
    }

    public static Connection createConnection(String driverClass, String url, String username, String password) throws ClassNotFoundException, SQLException {
        Class.forName(driverClass);
        return DriverManager.getConnection(url, username, password);
    }

    public static void close(Connection connection) {
        try {
            if (connection != null) {
                connection.close();
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

关于java - Java应用程序无法连接到MySQL数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38141313/

相关文章:

mysql - 让所有 child 都在树上的正确查询是什么?

java - 仅替换字符串中的第一个空格

java - <h :graphicImage> is not getting refreshed in JSF

Mysql:3种类型的用户,行有多个条目,不能分开

mysql 查询优化

java - 将 Java fx 应用程序连接到远程托管数据库

java - 如何从url中获取特定数据?

java - session 处理在 JSP 页面中不起作用?

mysql 性能 - mysqltuner

sql - 有哪些策略可用于将 Access 数据库迁移到基于 SQL 服务器的应用程序?