json-简单容器工厂
使用带有containerFactory 的解码示例,我得到以下输出:
[{DeviceType=foo, DeviceName=foo1, IPAddress=192.168.1.1, UserName=admin, Password=pw}, {DeviceType=foo, DeviceName=foo2, IPAddress=192.168.1.2, UserName=admin, Password=pw}]
这些是调用entry.getValue() 时输出的条目。
如何从这些对象中获取数据?
例如,我如何获取DeviceName 的值。
Map obj = (Map)parser.parse(new FileReader("example.yml"),containerFactory);
Iterator iter = obj.entrySet().iterator();
//Iterator iterInner = new Iterator();
while(iter.hasNext()){
Map.Entry entry = (Map.Entry)iter.next();
System.out.println(entry.getValue());
}
//System.out.println("==toJSONString()==");
//System.out.println(JSONValue.toJSONString(json));
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch(ParseException pe){
System.out.println(pe);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 System.out.println(entry.getValue().getClass()) 找出值是什么类(或在调试器中检查它)以及实际类的值。从输出来看,它看起来像
List
或其他东西。Try finding out what classes the values are with
System.out.println(entry.getValue().getClass())
(or inspect it in debugger) and the values to actual classes. From the output it looks likeList<Map<String, String>>
or something.