如何将JSP页面中的表单信息保存到Mysql数据库?

如何将JSP页面中的表单信息保存到Mysql数据库?,第1张

获取表单中的信息,然后插入到Mysql中 

<%@ page language="java" contentType="text/html charset=gbk"

    pageEncoding="gbk"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%

int id = Integer.parseInt(request.getParameter("id"))

int rootid = Integer.parseInt(request.getParameter("rootid"))

%>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html charset=gbk">

<title>Replay</title>

</head>

<body>

<form method="post" action="ReplayOK.jsp">

 <input type="hidden" name="id" value="<%=id %>">

 <input type="hidden" name="rootid" value="<%=rootid %>">

<table align="center">

 <tr>

  <td>

   <input type="text" name="title" size="80">

  </td>

 </tr>

 <tr>

  <td>

   <textarea cols="80" rows="20" name="cont"></textarea>

  </td>

 </tr>

 <tr>

  <td>

   <input type="submit" value="提交">

  </td>

 </tr>

</table>

</form>

</body>

</html>

---------------------------------------------------------------

下面接收上面表单中传过来的信息,并插入到mysql中

<%@ page language="java" contentType="text/html charset=gbk"

    pageEncoding="gbk"%>

<%@ page import="java.sql.*" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%

request.setCharacterEncoding("GBK")

int id = Integer.parseInt(request.getParameter("id"))

int rootid = Integer.parseInt(request.getParameter("rootid"))

String title = request.getParameter("title")

String cont = request.getParameter("cont").replaceAll("\n","<br/>")

Connection conn = null

Statement st = null

Class.forName("com.mysql.jdbc.Driver")

conn = DriverManager.getConnection("jdbc:mysql://localhost/bbs?user=root&password=690115399")

st = conn.createStatement()

conn.setAutoCommit(false)

String sql = "insert into article values(null,?,?,?,?,now(),0)"

PreparedStatement pstmt = conn.prepareStatement(sql)

pstmt.setInt(1,id)

pstmt.setInt(2,rootid)

pstmt.setString(3,title)

pstmt.setString(4,cont)

pstmt.executeUpdate()

st.executeUpdate("update article set isleaf = 1 where id = " + id)

conn.commit()

conn.setAutoCommit(true)

st.close()

pstmt.close()

conn.close()

%>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html charset=gbk">

<title>Insert title here</title>

</head>

<body>

<%response.sendRedirect("ShowArticleTree.jsp") %>

</body>

</html>

当然最好的方法还是应该用jsp + JavaBean方式。

首先是数据库连接代码类:

然后在你的jsp页面写上调用数据连接类的增删改查就可以了。

不懂hi我

jsp页面中

<%

String sqlgetServiceId="select e.id from eip_service e where e.service_name_en='"+serviceName.substring(serviceName.lastIndexOf("_")+1)+"' and e.service_version=1.0"

int sid=BaseDB.queryId(sqlgetServiceId, null)

%>

BaseDB.java

import java.sql.Connection

import java.sql.DriverManager

import java.sql.PreparedStatement

import java.sql.ResultSet

import java.sql.SQLException

import java.util.regex.Matcher

import java.util.regex.Pattern

public class BaseDB {

public static String URL = "jdbc:oracle:thin:@192.168.174.189:1521:soadb" //版本管理ERP数据库配置

public static String NAME = "SVMDEV"//用户名

public static String PWD = "SVMPWD"//密码

public static PreparedStatement ps =null

public static ResultSet rs =null

public static Connection connection=null

//获取数据库连接信息

public static Connection getConnection() {

try {

Class.forName("oracle.jdbc.OracleDriver")

if (connection==null) {

connection=DriverManager.getConnection(URL, NAME, PWD)

}

} catch (ClassNotFoundException e) {

e.printStackTrace()

} catch (SQLException e) {

e.printStackTrace()

}

return connection

}

//查询数据,根据相关信息查询得到当前服务的某个需要的id

public static int queryId(String sql,String parameter[] ) {

int getId=0

try {

connection=getConnection()

ps=connection.prepareStatement(sql)

if (parameter!=null) {

for (int i = 1i <=parameter.lengthi++) {

ps.setString(i,parameter[i-1])

}

}

rs=ps.executeQuery()

if(rs.next()&&rs!=null){

getId=rs.getInt(1)

}

} catch (SQLException e) {

e.printStackTrace()

}finally{

closeAll(ps, rs, connection)

}

return getId

}

//修改数据

public static int updateData(String sql,String parameter[] ) {

int count=0

try {

connection=getConnection()

ps=connection.prepareStatement(sql)

if (parameter!=null) {

for (int i = 1i <=parameter.lengthi++) {

ps.setString(i,parameter[i-1])

}

}

count=ps.executeUpdate()

} catch (SQLException e) {

e.printStackTrace()

}finally{

closeAll(ps, rs, connection)

}

return count

}

//插入数据

public static int insertData(String sql,String parameter[]) {

int num=0

try {

connection=getConnection()

ps=connection.prepareStatement(sql)

if (parameter!=null) {

for (int i = 0i <parameter.lengthi++) {

ps.setString(i+1,parameter[i])

}

}

num=ps.executeUpdate()

} catch (Exception e) {

e.printStackTrace()

}finally{

closeAll(ps,null,connection)

}

return num

}

//关闭所有

public static void closeAll(PreparedStatement ps,ResultSet rs,Connection connection) {

try {

if (ps!=null) {

ps.close()

}

} catch (Exception e2) {

try {

if (rs!=null) {

rs.close()

rs=null

}

} catch (Exception e3) {

try {

if (connection!=null) {

//connection.close()

//connection=null

}

} catch (Exception e4) {

e4.printStackTrace()

}

}

}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9997113.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存