如何连接与我的数据库交互的 java?我正在为 mysql 使用 XAMPP 我在知道我正在使用什么端口时遇到问题。我只是从互联网上复制了其他人正在使用的端口但我真的不知道我的数据库端口号是什么我该怎么做检查去数据库的端口??//localhost:3306
这是我的代码:
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
System.out.print("COnnection succesfull");
}
catch(Exception ex)
{
System.out.print("Unable to connect ");
}
try
{
Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://localhost:3306/test?user=root&password=";
Connection con = DriverManager.getConnection(url);
System.out.print("Connection Stablished");
}
catch(Exception ex)
{
System.out.print("Connect cannot stablished");
}