jsp+jdbc實現串連資料庫的方法_JSP編程

來源:互聯網
上載者:User

本文執行個體講述了jsp+jdbc實現串連資料庫的方法。分享給大家供大家參考。具體如下:

初次嘗試JSP+jdbc,按照書上的例子折騰了半天,就是連不上資料庫。於是在網上找材料,終於發現,老的jar包與新版資料庫直接不相容。於是下了新的資料庫jdbc包,試了一下,果然搞定。這裡,把這個程式跟大家共用下,程式實現了網頁登入介面上提取使用者名稱與密碼,然後與資料庫中使用者名稱密碼對應,從而決定程式是否通過登入。

inc.jsp檔案:

<%@ page import="java.sql.Connection"%><%@ page import="java.sql.DriverManager"%><%@ page import="java.sql.Statement"%><%@ page import="java.sql.ResultSet"%><%@ page import="java.sql.ResultSetMetaData"%><%String drv = "com.mysql.jdbc.Driver";String url = "jdbc:mysql://localhost:3306/demo";String usr = "nari";String pwd = "nari";%>

welcome.jsp檔案:

<html>  <body>   welcome<br>  </body></html>

login_action.jsp檔案:

<%@ include file="inc.jsp" %><%String username = request.getParameter("username");String password = request.getParameter("password");if(username == null || password == null){  response.sendRedirect("index.jsp");}boolean isValid = false;String sql = "select * from user where username='"+username+"'and password='"+password+"'";out.println("===>"+sql);try{  Class.forName(drv).newInstance();  Connection conn = DriverManager.getConnection(url, usr,pwd);  Statement stm = conn.createStatement();  ResultSet rs = stm.executeQuery(sql);  if(rs.next())isValid = true;  rs.close();  stm.close();  conn.close();}catch(Exception e){  e.printStackTrace();  out.println(e);}if(isValid){  response.sendRedirect("welcome.jsp");}else response.sendRedirect("index.jsp");%><% /*if(username.endsWith("a"))response.sendRedirect("welcome.jsp");else response.sendRedirect("index.jsp");*/%>

index.jsp檔案:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><html>  <head>    <base href="<%=basePath %>"/>    <title>My JSP 'login.jsp' starting page</title>    <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="description" content="This is my page">  </head>  <body>   miThis is my JSP page.<br>  </body></html> <form name="form1" action="login_action.jsp" method="post"><table width="200" border="1"><tr>  <td colspan="2">登入視窗</td></tr><tr>  <td>使用者名稱</td>  <td><input type="text" name="username" size="10"/></td></tr><tr>  <td>密碼</td>  <td><input type ="password" name="password" size="10"/></td></tr><tr>  <td colspan="2"><input type="submit" name="submit" value="登入">  <a href="register.jsp">註冊新使用者</a></td></tr></table></form>

程式使用tomcat進行發布,myeclipse進行編輯和調試

希望本文所述對大家的jsp程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.