您需要在 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连接?在本地主机上要设置的端口号是多少?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!