您需要在 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中文網其他相關文章!