conn = DriverManager.getConnection("jdbc:mysql://"+address+":"+port+"/library","root","");
这一句中,address不能写localhost,也不能写127.0.0.1。那应该怎么写呢?请指教。
conn = DriverManager.getConnection("jdbc:mysql://"+address+":"+port+"/library","root","");
这一句中,address不能写localhost,也不能写127.0.0.1。那应该怎么写呢?请指教。