您需要在 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连接?在本地主机上要设置的端口号是多少?的详细内容。更多信息请关注PHP中文网其他相关文章!