这段程序哪错了? JSP+TOMCAT+MYSQL环境ECLIPSE

<%@pagecontentType="text/html;charset=gb2312"%><%@pageimport="java.sql.*"%><html><hea... <%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>

<html>
<head>
<title>查询</title>
</head>

<body>
<%
while(session.getAttribute("roleno"))
{
if(request.getParameter("name")==null)
{
%>
<form action="" method="post" id="form1" name="form1">
<p align="center"><span class="STYLE4">输入你要查询的资料</span>    
<label>
<input type="text" name="name" id="name">
</label>
</p>
<p align="center">
<label>
<input type="submit" name="seek" value="模糊查询">
</label>
</p>
</form>
<p><%
}
else{
String name=(String)request.getParameter("name").trim();
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
String url ="jdbc:mysql://localhost/zlgl?user=root&password=123456&useUnicode=true&characterEncoding=8859_1";

Connection conn= DriverManager.getConnection(url);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql = "SELECT * FROM paper WHERE Name='%"+name+"'%";
ResultSet rs=stmt.executeQuery(sql);

String ntemp="a";
while(rs.next()){
ntemp=(String)rs.getString("Name").trim();
}
if(ntemp=="a"){out.print("没有相关资料");%><a href="login.jsp">返回</a></p><%}

else{

for(int i=0;i<db.getCount("paper");i++){
%>
<tr>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.Name",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.zz",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.slqk",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.Time",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.bz",i)%></div></td>
</tr>
<p><%}
}
%></p>

</body>
</html>

总是提示 TRY WITHOUT CATCH
CATCH WITHOUT TRY
可是我也没写TRY CATCH啊?
高人给指点一下
第一个答复我试了.还是那个错误.而且缺少TRY是第一行,就是<%@page……%>那行.
缺少CATCH是最后一行</html>下面一行
展开
 我来答
binbin2017
2007-05-30 · TA获得超过3992个赞
知道小有建树答主
回答量:1160
采纳率:0%
帮助的人:891万
展开全部
意思叫你写
try{
}
catch{
}

捕捉异常啊。

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>

<html>
<head>
<title>查询</title>
</head>

<body>
<%
while(session.getAttribute("roleno"))
{
if(request.getParameter("name")==null)
{
%>
<form action="" method="post" id="form1" name="form1">
<p align="center"><span class="STYLE4">输入你要查询的资料</span>
<label>
<input type="text" name="name" id="name">
</label>
</p>
<p align="center">
<label>
<input type="submit" name="seek" value="模糊查询">
</label>
</p>
</form>
<p><%
}
else{
String name=(String)request.getParameter("name").trim();

try{
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
}
catch(ClassNotFoundException e)
{
out.print("找不到类!");
}
String url ="jdbc:mysql://localhost/zlgl?user=root&password=123456&useUnicode=true&characterEncoding=8859_1";

try{
Connection conn= DriverManager.getConnection(url);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql = "SELECT * FROM paper WHERE Name='%"+name+"'%";
ResultSet rs=stmt.executeQuery(sql);

String ntemp="a";
while(rs.next()){
ntemp=(String)rs.getString("Name").trim();
}
if(ntemp=="a"){out.print("没有相关资料");%><a href="login.jsp">返回</a></p><%}

else{

for(int i=0;i<db.getCount("paper");i++){
%>
<tr>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.Name",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.zz",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.slqk",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.Time",i)%></div></td>
<td height="20"><div align="center"><%=db.getAttributeStr("paper.bz",i)%></div></td>
</tr>
<p><%
}
}
conn.close();
}
catch(Exception ex)
{
out.print(ex.getMessage());

}

%></p>

</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
404331164
2007-05-30 · TA获得超过356个赞
知道小有建树答主
回答量:646
采纳率:0%
帮助的人:357万
展开全部
。。。我还没遇到过这种情况,不过我觉得还有别的错。。。
群:38534363
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式