首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

hash map插入数据的有关问题

2012-01-18 
hash map插入数据的问题for (int a 0 a root.getAttributes().getLength() a++) {System.out.printl

hash map插入数据的问题
for (int a = 0; a < root.getAttributes().getLength(); a++) {
 
  System.out.println("============="+root.getAttributes().item(a).getNodeName()
  + "---" + root.getAttributes().item(a).getNodeValue());
  这段代码后面我该添加hash map的什么方法才能是添加得到的nodename和dodevalue呢 put方法好像都是插入写死的,在线等


[解决办法]
你循环把得到name跟value放到2个变量里面,然后动态存到map里面去不就是了 
map.put(name,value);
[解决办法]
那你XML文件的格式总归是固定的吧。
[解决办法]
就这样了啊。
map.put(root.getAttributes().item(a).getNodeName()),root.getAttributes().item(a).getNodeValue());
)
[解决办法]

探讨

就这样了啊。
map.put(root.getAttributes().item(a).getNodeName()),root.getAttributes().item(a).getNodeValue());
)

热点排行