jsp顯示資料庫數據
㈠ 在jsp中怎麼獲取顯示資料庫的信息
方法有幾種fj現在開發的話都用框架51不知道樓主學到哪了254不同階段方法不同
㈡ 如何在JSP頁面顯示mysql資料庫內容
顯示資料庫數據的jsp代碼如下:
解釋及說明在代碼的注釋中即可查看
java">
<spanstyle="font-size:12px;"><spanstyle="font-size:14px;"><%@pagelanguage="java"import="java.sql.*,java.io.*,java.util.*"%>
<%@pagecontentType="text/html;charset=utf-8"%>
<html>
<head>
<styletype="text/css">
table{
border:2px#CCCCCCsolid;
width:360px;
}
td,th{
height:30px;
border:#CCCCCC1pxsolid;
}
</style>
</head>
<body>
<%
//驅動程序名
StringdriverName="com.mysql.jdbc.Driver";
//資料庫用戶名
StringuserName="root";
//密碼
StringuserPasswd="szy";
//資料庫名
StringdbName="studentmanage";
//表名
StringtableName="student";
//連接字元串
Stringurl="jdbc:mysql://資料庫地址:埠號/"+dbName+"?user="
+userName+"&password="+userPasswd;
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connectionconnection=DriverManager.getConnection(url);
Statementstatement=connection.createStatement();
Stringsql="SELECT*FROM"+tableName;
ResultSetrs=statement.executeQuery(sql);
%>
<br>
<br>
<tablealign="center">
<tr>
<th>
<%
out.print("學號");
%>
</th>
<th>
<%
out.print("姓名");
%>
</th>
<th>
<%
out.print("專業");
%>
</th>
<th>
<%
out.print("班級");
%>
</th>
</tr>
<%
while(rs.next()){
%>
<tr>
<td>
<%
out.print(rs.getString(1));
%>
</td>
<td>
<%
out.print(rs.getString(2));
%>
</td>
<td>
<%
out.print(rs.getString(3));
%>
</td>
<td>
<%
out.print(rs.getString(4));
%>
</td>
</tr>
<%
}
%>
</table>
<divalign="center">
<br><br><br>
<%
out.print("數據查詢成功,恭喜你");
%>
</div>
<%
rs.close();
statement.close();
connection.close();
%>
</body>
</html></span><spanstyle="font-size:24px;color:rgb(255,0,0);">
</span></span>
顯示結果如下所示:
㈢ jsp頁面如何顯示資料庫信息
在後台取到結果集後放到request里,然後在頁面上取request里的東西。
㈣ 在jsp頁面上顯示資料庫一個表中所有的的內容。
在jsp頁面上顯示資料庫一個表中所有的的內容的方法是迭代。
1、jsp頁面接收所有內容的bookslist:
<html>
<body>
<head>
<title>
View Books
</title>
</head>
<body>
<table border=2>
<tr>
<th>Book ID</th>
<th>Title</th>
<th>Author</th>
<th>No. of copies AVAILABLE</th>
<th>Number of favourites</th>
</tr>
<%
ArrayList<Book> dbooks=(ArrayList)request.getAttribute("bookslist");
Iterator it=dbooks.iterator();
while(it.hasNext())
{
Book b=(Book)it.next();
%>
<tr>
<td><%=b.bookID%></td>
<td><%=b.bookTitle%></td>
<td><%=b.bookAuthor%></td>
<td><%=b.bookCopies%></td>
<td><%=b.bookFavs%></td>
</tr>
<%
}
%>
</table>
</body>
</html>
2、java代碼獲取資料庫內容:
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3307/library", "root", "admin");
PreparedStatement ps=con.prepareStatement("select * from book");
ResultSet rs=ps.executeQuery();
ArrayList<Book> books=new ArrayList<Book>();
while(rs.next())
{
Book b= new Book();
b.bookID=rs.getInt(3);
b.bookTitle=rs.getString(1);
b.bookAuthor=rs.getString(2);
b.bookCopies=rs.getInt(4);
b.bookFavs=rs.getInt(5);
books.add(b);
}
req.setAttribute("bookslist",books);
con.close();
㈤ jsp頁面上顯示資料庫中一個表的所有數據
你用的是struts2吧!你這直接過去當然是取不到list數據的,你得先跳到action,在跳到你的查詢顯示頁面,你有配置struts.xml等等配置文件沒?
㈥ jsp表格如何顯示資料庫的數據
如果已經放在數組里了,那用兩層循環就可以取出,外層循環取行,內層循環取列
例如數組array[x][y]:
<%for(int i=0;i<array.length.i++)
{
%>
<tr>
<%
for(int j=0;j<array[i].length;j++)
{
%>
<td><%=array[i][j]%></td>
<%
}
%>
</tr>
<%
}%>
以上代碼沒經過測試,不過就是這個原理
㈦ jsp中顯示資料庫中的數據
out.println(strHtml);
㈧ JSP頁面上如何顯示資料庫內容
查詢資料庫應該知道吧?
調用查詢資料庫方法,從而得到一個數據集合,List類型,數組類型都可以。
假設查詢資料庫方法是 getData(),返回一個list集合。
<select>
<option value=0>--請選擇--</option>
<%
d=new ();//這是那個資料庫訪問的類。
List list=d.getData();
for(int i=0;i<list.size();i++)
{
%>
<option value=<%=i+1%>><%=list.get(i)%></option>
<%}%>
</select>
就這樣。
㈨ jsp中如何將資料庫中的數據顯示在頁面中
要想把servlet的數據放到jsp顯示需要做的是:
1.把數據從資料庫里查詢出來,放到結果集里。
2.把結果集放到request中,傳給jsp頁面
3.頁面遍歷結果集顯示即可
㈩ jsp如何從資料庫中查出數據在頁面上顯示
//查詢所有相片信息 public String selectList(){ List<Baby> result=babyService.getBabys(); ActionContext.getContext().put("result", result); return "babylist"; } jsp顯示 <t:forEach items="${result}" var="item"> <tr> <td>${item.id}</td> <td>${item.name}</td> <td>${item.ntroction}</td> <td>${item.data}</td> <td>${item.commodity}</td> <td>${item.user.id}</td> <td><a href="add_movie.html">查看/修改</a></td> </tr> </t:forEach>