標籤:
運行環境 tomcat5.5+MySql5.0
編寫一個簡單的HTML表單:
<html>
<head>
</head>
<body>
<form action="http://127.0.0.1/test/login.jsp" method="post">
學號:<input type="text" name="id"><br>
姓名:<input type="text" name="name"><br>
<label>
<input type="radio" name="sex" value="boy" checked>
男</label>
<label>
<input type="radio" name="sex" value="girl">
女</label><br>
電話:<input type="text" name="tel"><br>
<input type="submit" value="提交">
<input type="reset" value="重填">
</form>
</body>
</html>接這編寫一個JSP檔案用於讀取表單資料
Connection conn = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = java.sql.DriverManager.getConnection("jdbc:mysql://localhost/mydb","root","corsair");
if(conn==null){
System.out.println("get Conn Error");
}
Statement stmt=conn.createStatement();
ResultSet rs=null;
%>
<%
String id,name,sex,tel;
id=request.getParameter("id");
name=request.getParameter("name");
sex=request.getParameter("sex");
tel=request.getParameter("tel");
try{
stmt.executeUpdate("INSERT INTO inf_student(id,name,sex,tel) VALUES (‘"+id+"‘,‘"+name+"‘,‘"+sex+"‘,‘"+tel+"‘)");
}catch(SQLException e){}
stmt.close();
conn.close();
%>將以上檔案儲存在tomcat5.5的webapps目錄下;然後啟動tomcat5.5和mysql資料庫,最後開啟表單,插入資料提交,並可以mysqlQueryBrower查看到插入資料的情況了。
posted on 2006-09-15 15:42 銀河海盜 閱讀(1170) 評論(4) 編輯 收藏 所屬分類: WEB
使用JSP串連MySql資料庫讀取HTML表單資料進行存貯