gpt4 book ai didi

java - 使用 java 将 HashMap 的键和值转换为 HTML 表

转载 作者:行者123 更新时间:2023-12-02 04:43:29 26 4
gpt4 key购买 nike

我有一个 HashMap ,如下所示:

HashMap<String, Integer> jcbs = new HashMap<String, Integer>();

键是一个字符串,值是一个整数

现在我有一个 html 文件,其中有一个表格。

我现在需要做的是将HashMap的所有键和值填充到这个html表中。

最佳答案

<%

StringBuilder stringMapTable = new StringBuilder();
stringMapTable.append("<table>");

Iterator it = jcbc.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
stringMapTable.append("<tr><td>" + entry.getKey() + "</td><td>" +entry.getValue() + "</td></tr>");
System.out.println(pair.getKey() + " = " + pair.getValue());
it.remove(); // avoids a ConcurrentModificationException
}

String mapTable = stringMapTable.toString();

%>

在 HTML 中

<%=mapTable %>

关于java - 使用 java 将 HashMap 的键和值转换为 HTML 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29911563/

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