应用程序要和SQLServer数据库服务器管理的数据库students建立连接,而有权访问数据库students的用户的id和密码分别是sa和123456,那么建立连接的代码如下: try{ String uri="jdbc:sqlserver://localhost:1433;_________=students"; String user="sa"; String password="123456"; con=__________.getConnection(uri,user,password); } catch(SQLException e){ System.out.println(e); }