jsp往mysql数据库插入数据出错
我从网上下了段jsp添加数据的代码,自己运行时却一直出错,求各位高人指点一下前面是一段html表单代码,就不贴了,这是jsp的代码<jsp:useBeanid="myBe...
我从网上下了段jsp添加数据的代码,自己运行时却一直出错,求各位高人指点一下
前面是一段html表单代码,就不贴了,这是jsp的代码
<jsp:useBean id="myBean" scope="page" class="MyBean.liao"/>
<%
this.i = myBean.getSum() + 1;
this.cheng = myBean.setDate(this.id,this.title,this.source,this.content,this.sender);
out.println(" <h1>"+this.cheng + " </h1>");
out.println("现在数据库中的总记录数为:"+i);
myBean.closeDate();//关闭对数据库的操作
%>
<table border="1">
<caption>刚才插入的数据如下: </caption>
<tr>
<td> <%= this.id %> </td>
<td> <%= this.title %> </td>
<td> <%= this.source %> </td>
<td> <%= this.content %> </td>
<td> <%= this.sender%> </td>
</tr>
</table>
然后是一个javabean操作数据库的
package MyBean;
import java.io.*;
import java.sql.*;
public class liao
{
String driver,url,user,pwd,SQL;
Connection con;//连接对象
Statement stat;//SQL语句对象
ResultSet rs;//结果集对象
String id,title,source,content,sender;//取数据库中的数据用到
String newid,newtitle,newsource,newcontent,newsender;//插入数据到数据库中用到
int number;//记录当前结果集数据总行数
……
然后是一个javabean操作数据库的
package MyBean;
import java.io.*;
import java.sql.*;
public class liao
{
String driver,url,user,pwd,SQL;
Connection con;//连接对象
Statement stat;//SQL语句对象
ResultSet rs;//结果集对象
String id,title,source,content,sender;//取数据库中的数据用到
String newid,newtitle,newsource,newcontent,newsender;//插入数据到数据库中用到
int number;//记录当前结果集数据总行数
……
问题是当我提交表单数据后出错提示
org.apache.jasper.JasperException: 无法编译JSP
An error occurred at line: 33 in the jsp file: /incept.jsp
Generated servlet error:
The method setDate(String, String, String, String, String, String) in the type liao is not applicable for the arguments (String, String, String, String, String)
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
上面提示说类里面有六个参数,可是我找来找去也找不到第六个参数,怎么回事,帮帮我 !!麻烦各位了,如果满意我还会另加分
http://hi.baidu.com/%B7%A8%B2%BC%C0%D7%BC%D3%C4%DA%CC%D8%C0%EF/blog/item/019f8a3e68f212ca7d1e71ec.html
受字数限制不能发,就发个链接
这是javabean完整代码
怎么没显示…… 展开
前面是一段html表单代码,就不贴了,这是jsp的代码
<jsp:useBean id="myBean" scope="page" class="MyBean.liao"/>
<%
this.i = myBean.getSum() + 1;
this.cheng = myBean.setDate(this.id,this.title,this.source,this.content,this.sender);
out.println(" <h1>"+this.cheng + " </h1>");
out.println("现在数据库中的总记录数为:"+i);
myBean.closeDate();//关闭对数据库的操作
%>
<table border="1">
<caption>刚才插入的数据如下: </caption>
<tr>
<td> <%= this.id %> </td>
<td> <%= this.title %> </td>
<td> <%= this.source %> </td>
<td> <%= this.content %> </td>
<td> <%= this.sender%> </td>
</tr>
</table>
然后是一个javabean操作数据库的
package MyBean;
import java.io.*;
import java.sql.*;
public class liao
{
String driver,url,user,pwd,SQL;
Connection con;//连接对象
Statement stat;//SQL语句对象
ResultSet rs;//结果集对象
String id,title,source,content,sender;//取数据库中的数据用到
String newid,newtitle,newsource,newcontent,newsender;//插入数据到数据库中用到
int number;//记录当前结果集数据总行数
……
然后是一个javabean操作数据库的
package MyBean;
import java.io.*;
import java.sql.*;
public class liao
{
String driver,url,user,pwd,SQL;
Connection con;//连接对象
Statement stat;//SQL语句对象
ResultSet rs;//结果集对象
String id,title,source,content,sender;//取数据库中的数据用到
String newid,newtitle,newsource,newcontent,newsender;//插入数据到数据库中用到
int number;//记录当前结果集数据总行数
……
问题是当我提交表单数据后出错提示
org.apache.jasper.JasperException: 无法编译JSP
An error occurred at line: 33 in the jsp file: /incept.jsp
Generated servlet error:
The method setDate(String, String, String, String, String, String) in the type liao is not applicable for the arguments (String, String, String, String, String)
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
上面提示说类里面有六个参数,可是我找来找去也找不到第六个参数,怎么回事,帮帮我 !!麻烦各位了,如果满意我还会另加分
http://hi.baidu.com/%B7%A8%B2%BC%C0%D7%BC%D3%C4%DA%CC%D8%C0%EF/blog/item/019f8a3e68f212ca7d1e71ec.html
受字数限制不能发,就发个链接
这是javabean完整代码
怎么没显示…… 展开
4个回答
展开全部
五个参数,你传了六个实参。。。
如果还不能解决,请把JAVABEAN代码全部贴出来。。。
如果还不能解决,请把JAVABEAN代码全部贴出来。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
想问下你的主键, 是不是自增长了, 如果是那样的, 插入的时候 就不要主键的属性了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-05-15
展开全部
不太明白2L的话,说的具体点
我是楼主,jsp我还比较菜
我是楼主,jsp我还比较菜
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询