如何在JAVA中建立MySQL连接?在本地主机上要设置的端口号是多少?

如何在JAVA中建立MySQL连接?在本地主机上要设置的端口号是多少?

您需要在 URL 中使用端口号 3306。语法如下 -

jdbc:mysql://localhost:3306

示例

import java.sql.Connection;
import java.sql.DriverManager;
public class MySQLConnectionToJava {
   public static void main(String[] args) {
      String JDBCURL="jdbc:mysql://localhost:3306/sample?useSSL=false";
      Connection con=null;
      try {
         con = DriverManager.getConnection(JDBCURL,"root","123456");
         if(con!=null) {
            System.out.println("MySQL connection is successful with port 3306.");  
         }
      }
      catch(Exception e) {
         e.printStackTrace();
      } 
   }
}

输出

MySQL connection is successful with port 3306.

以上就是如何在JAVA中建立MySQL连接?在本地主机上要设置的端口号是多少?的详细内容,更多请关注其它相关文章!