怎样将后台数据显示到jsp页面的select中去

2024-11-03 04:11:48
推荐回答(2个)
回答1:

后台数据显示到jsp页面的select中去的思路:

1、查询dao层的数据库接口得到满足条件的数据

2、将list中的数据传到request范围到jsp页面

3、页面迭代显示到指定的select节点下

具体举例如下:

导入必要的包

<%@ page import="java.sql.*" %>
<%ResultSet resultset =null;%>


   Select element drop down box



<%
   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") ;
%>


   

Drop down box or select element


       


<%
       }
       catch(Exception e)
       {
            out.println("wrong entry"+e);
       }
%>


运行结果:

回答2:

你的数据是怎么保存的,如果是放在fwlx对象里以属性的形式并设置了get方法,那么就用${fwlx.属性名}来显示。