Sie müssen die Portnummer 3306 in der URL verwenden. Die Syntax lautet wie folgt:
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.
Das obige ist der detaillierte Inhalt vonWie stelle ich eine MySQL-Verbindung in JAVA her? Welche Portnummer muss auf localhost festgelegt werden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!