已采纳回答 / 慕妹7448193
import java.sql.*;public class ConnectDB{ private String url="jdbc:mysql://localhost:3306/lmos"; private String userName="root"; private String password="root"; private String jdbcName = "com.mysql.jdbc.Driver"; public Connection getCon() throws Excepti...
2015-06-01
已采纳回答 / 风中过客
String s =br.readLine();//把输入流的内容读了一次,读出来的内容复制到swhile((s = br.readLine())!= null)//br.readLine()继续读 , 可能就没有内容了,直接返回了null给s。
2015-05-31