jsp代码不能运行,问题出在哪

<%@pagelanguage="java"contentType="text/html;charset=GBK"pageEncoding="utf-8"%><%@pag... <%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="utf-8"%>
<%@ page import="java.util.*" %>
<%@ page import="java.sql.*" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Insert title here</title>
</head>
<body>

<%
try{
ArrayList al=new ArrayList();
String i;
Connection conn=null;

String url="jdbc:mysql://localhost:3306/wz";
String user="root";
String password="123456";
String driver="com.mysql.jdbc.Driver";
Class.forName(driver);//加载数据库的驱动

conn=DriverManager.getConnection(url, user, password);
if(conn!=null)
{
System.out.println("成功连接Mysql@@@@");
}

Statement ment=conn.createStatement();
ResultSet rs=ment.executeQuery("select name from book");
while(rs.next())
{

String s2=rs.getString(1);

al.add(s2);

}
}
catch(ClassNotFoundException e)
{
e.printStackTrace();
}
catch(SQLException e)
{
e.printStackTrace();
}
catch(Exception e)
{
e.printStackTrace();
}

%>

<select>

<%
for(int x=0;x<al.size();x++ )
{
%>
<option value="<%=al.get(x)%>"><%=al.get(x)%></option>

<%

}
%>

</select>
</body>
</html>
展开
 我来答
liuyang054
2015-04-20 · TA获得超过9093个赞
知道大有可为答主
回答量:5317
采纳率:78%
帮助的人:5325万
展开全部
<%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="utf-8"%>

charset = utf-8
追问
不是这的问题,是ArrayList al=new ArrayList(); 的问题。可是,我解决不了,不知道这有什么问题?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式