import java.sql.*;
import java.util.*;
import java.util.*;public class SecondSQL {
public static void main(String[] args)  {
  try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
} catch (ClassNotFoundException e1) {

e1.printStackTrace();
}

try {
Connection con=DriverManager.getConnection("jdbc:microsoft:sqlserver:192.168.24.3:1433;DatabaseName=nie","sa","WQvb123");
System.out.println("成功登陆");

} catch (SQLException e) {

e.printStackTrace();
}

}}
java.sql.SQLException: No suitable driver found for jdbc:microsoft:sqlserver:192.168.24.3:1433;DatabaseName=nie
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at day01.SecondSQL.main(SecondSQL.java:18)但是我用:telnet 192.168.24.3 1433的时候是可以进入的(有光标在闪)
这是什么原因,求高手解答下