您好,登錄后才能下訂單哦!
下面一起來(lái)了解下JSP + JDBC + MySQL實(shí)現(xiàn)讀取數(shù)據(jù)庫(kù)內(nèi)容到網(wǎng)頁(yè)的方法,相信大家看完肯定會(huì)受益匪淺,文字在精不在多,希望JSP + JDBC + MySQL實(shí)現(xiàn)讀取數(shù)據(jù)庫(kù)內(nèi)容到網(wǎng)頁(yè)的方法這篇短內(nèi)容是你想要的。
<%@ page language="java" %> <%@ page contentType="text/html; charset=UTF-8"%> <%@ page pageEncoding="UTF-8"%> <%@ page import="java.sql.*" %> <%@ page import="com.mysql.jdbc.Driver" %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>mysql</title> </head> <body> <% //數(shù)據(jù)庫(kù)URL String url = "jdbc:mysql://localhost/test?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8"; //數(shù)據(jù)庫(kù)用戶名 String userName = "root"; //數(shù)據(jù)庫(kù)密碼 String password = "root"; //加載驅(qū)動(dòng)程序 Class.forName("com.mysql.jdbc.Driver").newInstance(); //創(chuàng)建conn對(duì)象連接數(shù)據(jù)庫(kù) Connection conn = DriverManager.getConnection(url,userName,password); //創(chuàng)建stmt對(duì)象提交SQL語(yǔ)句到數(shù)據(jù)庫(kù) Statement stmt = conn.createStatement(); //mysl語(yǔ)句 String sql = "select * from data"; //執(zhí)行查詢 ResultSet rs = stmt.executeQuery(sql); int i = 0; while (rs.next()){ i++; out.println("<p>用戶" + i + " "); out.println(rs.getString(2)); out.println("</p>"); } out.print("<br>"); //關(guān)閉數(shù)據(jù)庫(kù)連接釋放資源 rs.close(); stmt.close(); conn.close(); %> </body> </html>
看完JSP + JDBC + MySQL實(shí)現(xiàn)讀取數(shù)據(jù)庫(kù)內(nèi)容到網(wǎng)頁(yè)的方法這篇文章后,很多讀者朋友肯定會(huì)想要了解更多的相關(guān)內(nèi)容,如需獲取更多的行業(yè)信息,可以關(guān)注我們的行業(yè)資訊欄目。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。