Class.forName("org.gjt.mm.mysql.Driver");
Connection sqlCon= DriverManager.getConnection("jdbc:mysql://localhost:3306/cwt",username,passwd); 
默认情况下Mysql的端口是3306.

解决方案 »

  1.   

    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
         sqlCon== DriverManager.getConnection("jdbc:mysql://ip:://localhost:3306/cwt?user=你的用户名&password=你的密码&useUnicode=true&characterEncoding=gb2312");
      

  2.   

    http://expert.csdn.net/Expert/FAQ/FAQ_Index.asp?id=15371
      

  3.   

    jsp连接MySQL数据库  
    testmysql.jsp如下:  
    <%@ page contentType="text/html;charset=gb2312"%>    
    <%@ page import="java.sql.*"%>  
    <html>    
    <body>    
    <%Class.forName("org.gjt.mm.mysql.Driver").newInstance(); 
    String url ="jdbc:mysql://localhost/softforum?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1" 
    //testDB为你的数据库名 
    Connection conn= DriverManager.getConnection(url); 
    Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE); 
    String sql="select * from test"; 
    ResultSet rs=stmt.executeQuery(sql); 
    while(rs.next()) {%>    
    您的第一个字段内容为:<%=rs.getString(1)%>    
    您的第二个字段内容为:<%=rs.getString(2)%>    
    <%}%>    
    <%out.print("数据库操作成功,恭喜你");%>    
    <%rs.close(); 
    stmt.close(); 
    conn.close(); 
    %>    
    </body>    
    </html>