導航:首頁 > 編程語言 > jsp表單內容存入資料庫中

jsp表單內容存入資料庫中

發布時間:2023-01-29 00:24:36

㈠ 用jsP通過表單向資料庫添加內容

沒有調用 addMessage()方法,怎麼添加,
<%@ page contentType="text/html;charset=gb2312" %>

<html><body><font size="3">
<jsp:useBean id="add" class="test.add" scope="request"/>
<jsp:setProperty name="add" property="*"/>
<%
if(add.number!=null)
{
add.addMessage()
}
%>
<form id="form1" name="form1" method="post" action="">
<p>學號專
<input type="text" name="number" />
</p>
<p>姓名屬
<input type="text" name="name" />
</p>
<p>
<input type="submit" name="Submit" value="提交" />

</p>

</form>
</font></body></html>

㈡ jsp表單提交,將內容保存資料庫!

<%@ page language="java" contentType="text/html; charset=GB2312"%>
<%@ page import="java.sql.*"%>
<html>
<head>
<title>添加好友</title>

</head>
<body bgcolor="ffaaff">
<center><br><br><br><br>
<%

String driverClass="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/friend";
String username = "root";
String password = "root";
Class.forName(driverClass);
Connection conn = DriverManager.getConnection(url, username, password);
Statement stmt = conn.createStatement();
String id=request.getParameter("id");
String name=request.getParameter("name");

String tel=request.getParameter("tel");
if(id.equals("")|name.equals("")|tel.equals(""))
{
response.sendRedirect("add2.jsp");
}
else{
String sql = "insert into stu(id,name,tel) values('"+id+"','"+name+"','"+tel+"')";
stmt.executeUpdate(sql);
out.print("成功添加好友:");
name=new String(name.getBytes("ISO-8859-1"));
out.print(name);
}
stmt.close();
conn.close();

%>
<a href="admin.jsp"> 返回管理首頁</a>
</center>
</body>
</html>
用javabean做,你要提交表到給這個jsp文件就可以提交,不懂得在回問哈!

㈢ 如何把JSP數據寫到資料庫中

首先是資料庫連接代碼類:
然後在你的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 = 1; i <=parameter.length; i++) {
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 = 1; i <=parameter.length; i++) {
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 = 0; i <parameter.length; i++) {
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();
}
}

}

}

}

㈣ 如何將JSP頁面中的表單信息保存到Mysql資料庫

獲取表單中的信息,然後插入到Mysql中
<%@pagelanguage="java"contentType="text/html;charset=gbk"
pageEncoding="gbk"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<%
intid=Integer.parseInt(request.getParameter("id"));
introotid=Integer.parseInt(request.getParameter("rootid"));

%>

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gbk">
<title>Replay</title>
</head>
<body>
<formmethod="post"action="ReplayOK.jsp">
<inputtype="hidden"name="id"value="<%=id%>">
<inputtype="hidden"name="rootid"value="<%=rootid%>">
<tablealign="center">
<tr>
<td>
<inputtype="text"name="title"size="80">
</td>
</tr>

<tr>
<td>
<textareacols="80"rows="20"name="cont"></textarea>
</td>
</tr>

<tr>
<td>
<inputtype="submit"value="提交">
</td>
</tr>
</table>
</form>
</body>
</html>

---------------------------------------------------------------
下面接收上面表單中傳過來的信息,並插入到mysql中

<%@pagelanguage="java"contentType="text/html;charset=gbk"
pageEncoding="gbk"%>
<%@pageimport="java.sql.*"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<%
request.setCharacterEncoding("GBK");
intid=Integer.parseInt(request.getParameter("id"));
introotid=Integer.parseInt(request.getParameter("rootid"));
Stringtitle=request.getParameter("title");
Stringcont=request.getParameter("cont").replaceAll(" ","<br/>");

Connectionconn=null;
Statementst=null;

Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection("jdbc:mysql://localhost/bbs?user=root&password=690115399");
st=conn.createStatement();

conn.setAutoCommit(false);

Stringsql="insertintoarticlevalues(null,?,?,?,?,now(),0)";
PreparedStatementpstmt=conn.prepareStatement(sql);
pstmt.setInt(1,id);
pstmt.setInt(2,rootid);
pstmt.setString(3,title);
pstmt.setString(4,cont);
pstmt.executeUpdate();

st.executeUpdate("updatearticlesetisleaf=1whereid="+id);

conn.commit();
conn.setAutoCommit(true);

st.close();
pstmt.close();
conn.close();
%>

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gbk">
<title>Inserttitlehere</title>
</head>
<body>
<%response.sendRedirect("ShowArticleTree.jsp");%>
</body>
</html>
當然最好的方法還是應該用jsp+JavaBean方式。

㈤ jsp 用form表單輸入數據後寫入資料庫

直接在本頁面寫入資料庫的話你可以在本頁面使用js進行資料庫操作。或者將表單提交給自己。然後自己進行處理

㈥ JSP創建的表單 怎麼將數據傳到SQL資料庫中

給你個思路吧,前台表單 form中寫好提交的地址(jsp本身或者servlet或其他控製版器);
控制器中,接收處理權提交過來的字元串,然後用 按照連接資料庫,插入數據表的順序寫入sql數據,
說白了就是用java操作插入性質的sql語句。
新學java嗎,建議提問時應該把問題說清楚,什麼樣的題目,是問答題還是實際的作業,如果是後者更應該說清楚,因為jsp插入資料庫的方式很多種,回答的人不一定能滿足你的要求,所以你網路一下jsp插入資料庫就有簡單的實例可以找到並運用了。

純手打^_^

閱讀全文

與jsp表單內容存入資料庫中相關的資料

熱點內容
youtubeapp怎麼下載 瀏覽:366
編程檢測是什麼 瀏覽:753
網路攝像機的傳輸距離 瀏覽:941
超值貓qq群購秒殺群 瀏覽:138
pdf文件能備注嗎 瀏覽:174
html可視化數據源碼在哪裡 瀏覽:387
adobereader專用卸載工具 瀏覽:28
vivo手機數據如何備份 瀏覽:888
ithmb文件轉換器 瀏覽:66
看病找什麼網站好 瀏覽:579
linux如何查看文件系統 瀏覽:581
linux統計點頻率 瀏覽:627
全民泡泡大戰安琪兒升級 瀏覽:620
編程scratch如何保存 瀏覽:750
aspnetmvc傳json 瀏覽:132
如何下載看神片的狐狸視頻app 瀏覽:579
怎樣將木紋文件添加到cad 瀏覽:223
java中的hashset 瀏覽:70
mate8升級emui50嗎 瀏覽:396
網路怎麼校線 瀏覽:546

友情鏈接