當前位置:首頁 » 操作系統 » jsp獲取資料庫中的數據

jsp獲取資料庫中的數據

發布時間: 2022-06-30 15:50:46

❶ jsp怎麼獲取資料庫內信息(顯示到界面中)

用SELECT語句可以調用資料庫記錄,譬如:
set rs_news=server.createobject("adodb.recordset")
sqltext="select top N from news where XXXXX= YYYYY order by id desc"
說明:N為數字,即調用幾條信息
XXXXX=YYYYY為條件,一般調用的記錄所在的欄目肯定有幾個分類,這里就可以作出限制,調用哪個欄目中的記錄。最後的ORDER為排序

❷ jsp獲取資料庫內容代碼

用SELECT查詢資料庫就可以了
下面的語句從表中選取
LastName
列的數據:
SELECT
LastName
FROM
Persons

❸ 如何在jsp頁面獲取資料庫中的數據

  1. 建立資料庫連接

  2. 調用方法,比如list<User> userlist = DB.findAll(), req.setAttribute("list",userlist)

  3. jsp部分:<c:forEach items="list" var="user">

    <td>${user.id}</td> //顯示User對象的id屬性

    </c:forEach>

    用到forEach,要引入jstl.jar

❹ JSP頁面怎麼得到資料庫中的數據

1、jsp頁面寫小腳本可以得到
2、可以是使用ajax技術 非同步進行訪問
3、可以配置web.xml 裡面配置好servlet
4、使用框架的話,就直接用框架技術來得到.......
總之,方法很多,看你是要採用哪種方法來做

❺ jsp獲取資料庫中的數據

<%
//JSP頁面直接訪問資料庫
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try{
Class.forName("JDBC驅動");
conn = DriverManager.getConnection("url", "username", "password");
stmt = conn.createStatement();
rs = stmt.executeQuery("select factor, ratio from 表名 where id=1");
while(rs.next()){
String factor = rs.getString("factor");
String ratio = rs.getString("ratio");
%>
factor :<%=factor %>
ratio :<%=ratio %>
<%
}
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(rs != null) rs.close();
if(stmt != null) stmt.close();
if(conn != null) conn.close();
}catch(Exception e1){
e1.printStackTrace();
}
}
%>
修改 驅動、url、username、password、表名、欄位名成你應用的相應數據,然後將這些代碼加入到你的jsp頁面,就可以在jsp頁面直接讀取到資料庫中的對應表指定欄位的數據了,祝你好運!

❻ 如何在jsp頁面獲取資料庫數據

把數據封裝在List中,把list放入request作用域鍾,在前台用foreach循環你的list就好了

❼ jsp頁面前台用jdbc如何獲取sql資料庫里的數據。

1、在後台寫一個JDBC方法,從資料庫中查詢出數據來,封裝到一個集合中,比如List或Map,然後放到request中,在前台直接從request獲取即可。
2、直接在前台寫一個JDBC操作的腳本方法,從資料庫中查詢出數據,封裝到集合中,然後根據需要迭代顯示。

❽ jsp中如何獲得資料庫的值

最簡單的JSP頁面中的資料庫操作方法:
<%@
page
language="java"
contentType="text/html;
charset=UTF-8"
pageEncoding="UTF-8"
%>
<%@page
import="java.sql.*"%>
<center>
<H1>
<font
color="blue"
size="12">管理中心</font></H1>
<HR
/>
<table
width="80%"
border="1">
<tr>
<th>ID</th>
<th>書名</th>
<th>作者</th>
<th>價格</th>
<th>刪除</th>
</tr>
<%
//
資料庫的名字
String
dbName
=
"zap";
//
登錄資料庫的用戶名
String
username
=
"sa";
//
登錄資料庫的密碼
String
password
=
"123";
//
資料庫的IP地址,本機可以用
localhost
或者
127.0.0.1
String
host
=
"127.0.0.1";
//
資料庫的埠,一般不會修改,默認為1433
int
port
=
1433;
String
connectionUrl
=
"jdbc:sqlserver://"
+
host
+
":"
+
port
+
";databaseName="
+
dbName
+
";user="
+
username
+
";password="
+
password;
//
//聲明需要使用的資源
//
資料庫連接,記得用完了一定要關閉
Connection
con
=
null;
//
Statement
記得用完了一定要關閉
Statement
stmt
=
null;
//
結果集,記得用完了一定要關閉
ResultSet
rs
=
null;
try
{
//
注冊驅動
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//
獲得一個資料庫連接
con
=
DriverManager.getConnection(connectionUrl);
String
SQL
=
"SELECT
*
from
note";
//
創建查詢
stmt
=
con.createStatement();
//
執行查詢,拿到結果集
rs
=
stmt.executeQuery(SQL);
while
(rs.next())
{
%>
<tr>
<td>
<%=rs.getInt(1)%>
</td>
<td>
<a
href="prepareupdate?ID=<%=rs.getInt("ID")%>"
target="_blank"><%=rs.getString(2)%></a>
</td>
<td>
<%=rs.getString(3)%>
</td>
<td>
<%=rs.getString(4)%>
</td>
<td>
<a
href="delete?ID=<%=rs.getInt("ID")%>"
target="_blank">刪除</a>
</td>
</tr>
<%
}
}
catch
(Exception
e)
{
//
捕獲並顯示異常
e.printStackTrace();
}
finally
{
//
關閉我們使用過的資源
if
(rs
!=
null)
try
{
rs.close();
}
catch
(Exception
e)
{}
if
(stmt
!=
null)
try
{
stmt.close();
}
catch
(Exception
e)
{}
if
(con
!=
null)
try
{
con.close();
}
catch
(Exception
e)
{}
}
%>
</table>
<a
href="insert.jsp">添加新紀錄</a>
</center>

❾ jsp怎麼獲取資料庫數據 spring

比如頁面有name和age兩個內容。
在spring MVC框架下
在action中如下寫
@RequestMapping(value="/login",method=RequestMethod.POST)
public String login(User user){
String userName = user.getName();
String userage = user.getAge();
System.out.println(userName + "," + userage);
if(userName=="zhangsan"&&age=="123"){
return "login";
}else{
return "false";
}
}

具體return的login和false是要跳到哪個頁面,在spirng的配置文件servlet.xml中如下配置
<!-- 視圖解析類-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/page/" /> <!-- 前綴 -->
<property name="suffix" value=".jsp" /> <!-- 後綴 -->
</bean>

這個配置的意思就是,return的是XXXX,就跳到/web-INF/page/xxxx.jsp 這個頁面

❿ JSP獲取資料庫信息

<table
width="100%"
border="0"
cellpadding="0"
cellspacing="1"
bgcolor="#a8c7ce">
<tr
align="center"
height="25"
bgcolor="d3eaef">
<td
width="5%">
編號
</td>
<td
width="10%">
標題
</td>
<td
width="23%">
內容
</td>
<td
width="10%">
發表日期
</td>
<td
width="16%">
基本操作
</td>
</tr>
<%
//獲取新聞信息集合,newList是從後台返回來的集合變數
List
nList
=
(List)
session.getAttribute("newList");
NewsEntity
new
=
null;
if
(nList.size()
<=
0)
{
%>
<tr
height="22"
bgcolor="#FFFFFF"
align="center">
<td
colspan="9"
align="center">
暫無新聞信息
</td>
</tr>
<%
}
else
{
for
(int
i
=
0;
i
<
nList.size();
i++)
{
new
=
(NewsEntity)
mList.get(i);
%>
<tr
height="22"
bgcolor="#FFFFFF"
align="center">
<td>
<%=new.getId()
%>
</td>
<td>
<%=new.getTitle()
%>
</td>
<td>
<%=new.getContent()
%>
</td>
<td>
<%=new.time()
%>
</td>
<td>
<a
href="MusicServlet?forward=getNewsDetailById&ID=<%=new.getId()%>"
>
<span
class="STYLE2">編輯</span>
</a>

<a
href="MusicServlet?forward=doDelNewsById&ID=<%=new.getId()%>"
onclick="return
confirm('您確定要刪除該條信息嗎?');"><span
class="STYLE2">刪除</span>
</a>
</td>
</tr>
<%
}
}
%>
</table>

熱點內容
快捷方式文件夾 發布:2024-11-16 18:26:33 瀏覽:290
安卓手機怎麼設置屏內返回鍵 發布:2024-11-16 18:26:30 瀏覽:928
java弱類型 發布:2024-11-16 18:25:46 瀏覽:306
路由器無法訪問外網 發布:2024-11-16 18:21:27 瀏覽:503
什麼叫用戶型密碼裝備 發布:2024-11-16 18:12:16 瀏覽:291
mysqllinux設置密碼 發布:2024-11-16 18:05:21 瀏覽:92
微信的密碼有什麼組成 發布:2024-11-16 17:49:41 瀏覽:629
伺服器如何載入無線網卡 發布:2024-11-16 17:49:39 瀏覽:954
vps如何配置ftp 發布:2024-11-16 17:46:39 瀏覽:909
mysql存儲過程注入 發布:2024-11-16 17:44:53 瀏覽:172