Jave EE的Dynamic Web Project项目 要连接MySQL数据库。这个代码别人都出效果。为什么我没效果。万分感谢
<%@pagecontentType="text/html;charset=gb2312"%><%@pageimport="java.sql.*"%><html><bod...
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<html>
<body>
<%
try{
Class.forName("com.mysql.jdbc.Driver");
String=url="jdbc:mysql://localhost:3306/test";
String username="root";
String password="1111";
Connection conn=driverManager.getConnection(url,username,password);
if(conn !=null){
out.println("数据库成功");
conn.close();
}else{
out.println("失败");
}
}catch (ClassNotFoundException e){
e.printStackTrace();
}catch(SQLException e){
e.printStackTrace();
}
%>
</body>
</html>
这是源代码
图片是提示错误 展开
<%@ page import="java.sql.*"%>
<html>
<body>
<%
try{
Class.forName("com.mysql.jdbc.Driver");
String=url="jdbc:mysql://localhost:3306/test";
String username="root";
String password="1111";
Connection conn=driverManager.getConnection(url,username,password);
if(conn !=null){
out.println("数据库成功");
conn.close();
}else{
out.println("失败");
}
}catch (ClassNotFoundException e){
e.printStackTrace();
}catch(SQLException e){
e.printStackTrace();
}
%>
</body>
</html>
这是源代码
图片是提示错误 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询