我有一个字符串
name,5486984,189.658.235.215,3.158.68.15,name2,189189,189.658.218.268,3.158.68.13...
等等
我在想我会把它放到地图中,但我不完全确定。我正在查看具有多值映射的 Apache Commons Collection 库。即使我使用它,我也不确定如何将这个 StringArray 解析成它。
编辑:
感谢您的答复。我的总体目标是让该字符串显示在 JSF 下拉菜单中。我有
<f:selectItems itemValue="#{mainBean.information}" value="#mainBean.information}" />
在我的 Java 中,我有
Private String [] information;
information = config.getStringArray("information"); // This brings in this string from the property file
我一直在参考这个 http://www.horstmann.com/corejsf/refcard.html
因此,就我在这里所拥有的而言,我刚刚发布了。它将填充该字符串数组的每个元素。我只希望显示“名称”并将其他三个值作为实际“值”传递。
我想我可能需要提出一个新问题。
我试图制作一个 Map 对象,它是一个字符串和一个字符串数组,但 JSF 拒绝接受它。