1. 程式人生 > >jsp:JDBCmysql數據庫連接

jsp:JDBCmysql數據庫連接

oge next type led ted int 輸入 打印 rate

一,本例使用JDBC連接mysql數據庫

package com.test;

import java.io.IOException;
import java.io.PrintWriter;
import java.sql.*;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


public class
GetMysql extends HttpServlet { /** * Constructor of the object. */ public GetMysql() { super(); } /** * Destruction of the servlet. <br> */ public void destroy() { super.destroy(); // Just puts "destroy" string in log // Put your code here
} /** * The doGet method of the servlet. <br> * * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server * @param response the response send by the server to the client *
@throws ServletException if an error occurred * @throws IOException if an error occurred */ private static final long serUid=1L; //加載驅動 static final String jdbc="com.mysql.jdbc.Driver"; //要連接的數據庫url static final String db_url="jdbc:mysql://localhost:3306/test"; //數據庫用戶名 static final String user="dyb"; //數據庫密碼 static final String pass="174372150"; public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { Connection conn=null; Statement stmt=null; //顯示的數據的格式 response.setContentType("text/html;charset=UTF-8"); PrintWriter out =response.getWriter(); try { Class.forName("com.mysql.jdbc.Driver"); //輸入用戶名密碼和連接。 conn=DriverManager.getConnection(db_url,user,pass); //用於向數據庫發送sql語句 stmt=conn.createStatement(); String sql=null; //輸入sql語句獲取想要的數據 sql="SELECT t.title,t.new_id," + "t.news_type_id,t.new_date," + "d.name FROM t_news t " + "JOIN t_type_id d on t.news_type_id=d.t_type_id"; //發送sql語句並返回結果 ResultSet rs=stmt.executeQuery(sql); //循環遍歷打印結果 while (rs.next()) { int id=rs.getInt("t.news_type_id"); String lr=rs.getString("t.title"); String dd=rs.getString("t.new_date"); String name=rs.getString("d.name"); out.print("ID:"+id); out.print("內容:"+lr); out.print("日期:"+dd); out.print("名稱:"+name); out.println("</BR>"); } //關閉通道 rs.close(); conn.close(); stmt.close(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } /** * The doPost method of the servlet. <br> * * This method is called when a form has its tag value method equals to post. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">"); out.println("<HTML>"); out.println(" <HEAD><TITLE>A Servlet</TITLE></HEAD>"); out.println(" <BODY>"); out.print(" This is "); out.print(this.getClass()); out.println(", using the POST method"); out.println(" </BODY>"); out.println("</HTML>"); out.flush(); out.close(); } /** * Initialization of the servlet. <br> * * @throws ServletException if an error occurs */ public void init() throws ServletException { // Put your code here } }

jsp:JDBCmysql數據庫連接