怎样将后台数据显示到jsp页面的select中去
2017-01-16 · 百度知道合伙人官方认证企业
后台数据显示到jsp页面的select中去的思路:
1、查询dao层的数据库接口得到满足条件的数据
2、将list中的数据传到request范围到jsp页面
3、页面迭代显示到指定的select节点下
具体举例如下:
导入必要的包
<%@ page import="java.sql.*" %>
<%ResultSet resultset =null;%>
<HTML>
<HEAD>
<TITLE>Select element drop down box</TITLE>
</HEAD>
<BODY BGCOLOR=##f89ggh>
<%
try{
//Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection =
DriverManager.getConnection
("jdbc:mysql://localhost/city?user=root&password=root");
Statement statement = connection.createStatement() ;
resultset =statement.executeQuery("select * from new") ;
%>
<center>
<h1> Drop down box or select element</h1>
<select>
//开始循环处理数据,分别填充到不同的option中
<% while(resultset.next()){ %>
<option><%= resultset.getString(2)%></option>
<% } %>
</select>
</center>
<%
}
catch(Exception e)
{
out.println("wrong entry"+e);
}
%>
</BODY>
</HTML>
运行结果:
2016-11-23 · 百度知道合伙人官方认证企业