gpt4 book ai didi

java - jsp 未迭代 servlet 发送的 Linkedhashmap

转载 作者:太空宇宙 更新时间:2023-11-04 14:04:40 25 4
gpt4 key购买 nike

我正在尝试从 servlet 发送的 LinkedHashmap 生成表行。但每当我执行时,我都会得到空或空 map 。我尝试单独运行 servlet 来检查 linkedhashmap 中是否存在数据,结果确实如此。但只有当我将它传递到 jsp 页面时,我才猜想我收到的是一张空 map 。

下面是代码

Jsp代码:

<%@ page language="java"
contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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">
<script src="http://code.jquery.com/jquery-1.10.2.js" type="text/javascript"></script>
<script src="js/app-ajax.js" type="text/javascript"></script>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
</head>

<body id = body>
<form action="Servlet" method="get">
<title>Enter Search Item</title>
<br>
<%
String val = request.getParameter( "search" );
if ( val!= null ) {
val = val.toString() ;
} else {
val ="";
}
%>
Search Item: <input type="text" name = "searchTerm" value = '<%=val%>' >
<br>
<input type="submit" value="Search" id ="button">
</form>
<div>
<table>
<c:if test="${not empty Documents}">
<thead>
<tr>
<td><h2>Title</h2></td>
<td><h2>Overview</h2></td>
</tr>
</thead>
<tbody>
<c:forEach items="${Documents}" var="document">
<tr>
<td><a href = ${document.key}>${document.value}</a></td>
<td></td>
</tr>
</c:forEach>
</tbody>
</c:if>

</table>
</div>

</body>

Servlet 代码:

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String search = request.getParameter("searchTerm");
LinkedHashMap<String, String> Docs = null;
ASearch ad;
try {
ad = new ASearch();
Docs = ad.getData(search);
} catch (Exception e) {
e.printStackTrace();
}
response.setContentType("text/html");
request.setAttribute("Documents", Docs); // Docs is not empty/NULL.
RequestDispatcher dispatcher = request.getRequestDispatcher("index.jsp?search="+search);

dispatcher.forward( request, response );

}

谁能告诉我我在这里做错了什么?

如有任何帮助,我们将不胜感激。

谢谢

最佳答案

LinkedHashMap本身不是Iterable类型。如果您想迭代键和值,则需要迭代键集中的键,并获取相应的值。

如果您不将该类型用作 Map<> ,我建议使用成对列表。

关于java - jsp 未迭代 servlet 发送的 Linkedhashmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28993674/

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