|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Java到底会发战成什么样,让我们拭目以待吧,我始终坚信着java会更好。以上都是俺个人看法,欢迎大家一起交流.
比来在一个项目中,要将一个list在客户端输入,而list内里的每一个值不是bean,而是map,想好很久,想了个举措,能够完成,代码以下
ArrayListtestList=newArrayList();HashMaptestMap1=newHashMap();testMap1.put("grade","七年级");testMap1.put("class","一班");testMap1.put("master","张三");testList.add(testMap1);HashMaptestMap2=newHashMap();testMap2.put("grade","八年级");testMap2.put("class","二班");testMap2.put("master","张三");testList.add(testMap2);HashMaptestMap3=newHashMap();testMap3.put("grade","九年级");testMap3.put("class","五班");testMap3.put("master","李四");testList.add(testMap3);
<tableborder="1"cellpadding="0"cellspacing="0"bordercolor="#0033CC"name="tableList"><tr><td>master</td><td>class</td><td>grade</td></tr><logic:iterateid="element"indexId="ind"name="testList"><tr><td><logic:iterateid="elementValue"indexId="idx"name="element"><logic:equalname="elementValue"property="key"value="master"><bean:writename="elementValue"property="value"/></logic:equal></logic:iterate></td><td><logic:iterateid="elementValue"indexId="idx"name="element"><logic:equalname="elementValue"property="key"value="class"><bean:writename="elementValue"property="value"/></logic:equal></logic:iterate></td><td><logic:iterateid="elementValue"indexId="idx"name="element"><logic:equalname="elementValue"property="key"value="grade"><bean:writename="elementValue"property="value"/></logic:equal></logic:iterate></td></tr></logic:iterate></table>
masterclassgrade另有更好的办法,接待交换,第一次在blog上发文,没有排版,请多包涵!
ruby里有这些工具吗?又要简单多少?我没有用过这两门语言,我估计在这些语言力没有很统一的这种标准,或者根本就没有提供。 |
|