使用JSP串連MySql資料庫讀取HTML表單資料進行存貯

來源:互聯網
上載者:User

標籤:

運行環境 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表單資料進行存貯

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.