gpt4 book ai didi

java - 使用数据库信息填充 JSP 下拉列表

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:14:41 24 4
gpt4 key购买 nike

我正在尝试从数据库表填充 JSP 下拉列表。

下面是创建数组并用数据库信息填充它的代码:

// this will create my array 
public static ArrayList<DropDownBrands> getBrandsMakes() {
ArrayList<DropDownBrands> arrayBrandsMake = new ArrayList<DropDownBrands>();
while (rs.next()) {
arrayBrandsMake.add(loadOB(rs));
}
return arrayBrandsMake;
}

// this will load my array object
private static DropDownBrands loadOB(ResultSet rs) throws SQLException {
DropDownBrands OB = new DropDownBrands();
OB.setBrands("BRAN");
return OB;
}

如何从我的 JSP 调用该类并填充下拉列表?

最佳答案

我建议尽量避免混合显示和模型代码。将所有 html 保留在 jsp 页面中,并创建提供所需信息的模型支持对象。例如,假设您有一个包含对象列表的简单 Java 类:

package com.example;

import java.util.ArrayList;
import java.util.List;

public class ListBean {

public List<String> getItems() {
List<String> list = new ArrayList<String>();
list.add("Thing1");
list.add("Thing2");
list.add("Thing3");
return list;
}
}

getItems 方法如何构造它返回的列表并不重要。要使用 JSTL 在 JSP 页面中显示这些项目,您需要执行以下操作:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<jsp:useBean id="obj" class="com.example.ListBean" scope="page"/>

<select>
<c:forEach var="item" items="${obj.items}">
<option>${item}</option>
</c:forEach>
</select>
</body>
</html>

除了使用 useBean,forEach 循环中使用的项目集合也可以来自 session 或请求对象。

这个链接也有很好的建议: http://java.sun.com/developer/technicalArticles/javaserverpages/servlets_jsp/

关于java - 使用数据库信息填充 JSP 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2901222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com