如何在黑莓控制台上打印 xml 节点的值
我已经创建了用于解析的节点,但我不知道如何显示该节点中的值。听到是我的节点,我想在 Eclipse 控制台中打印该值。
enter code here
for(int j=0; j<tempList.getLength(); j++){
if(tempList.item(j).getNodeName().equalsIgnoreCase("btitle")){
tempNode = tempList.item(j);
tempNode2 = ((NodeList)tempNode.getChildNodes()).item(0);
bean.setTitle(tempNode2.getNodeValue().trim());
// System.out.println("Node Value or title" +bean.getTitle() );
}
I have created the NODES for parsing but i dont know how to display the values within that NODE. hear is my NODE for that i want t\o print the value in console of eclipse.
enter code here
for(int j=0; j<tempList.getLength(); j++){
if(tempList.item(j).getNodeName().equalsIgnoreCase("btitle")){
tempNode = tempList.item(j);
tempNode2 = ((NodeList)tempNode.getChildNodes()).item(0);
bean.setTitle(tempNode2.getNodeValue().trim());
// System.out.println("Node Value or title" +bean.getTitle() );
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里如何漂亮地打印 XML:
XML Writer 类
页面顶部的代码示例向您展示了如何在给定输出流的情况下漂亮地打印 xml。要使用 DOM 获得漂亮的打印输出流,请参阅 Ted_Hopp 的答案:
DOM 打印
Have a look here for pretty printing an XML:
XML Writer class
The code sample at the top of the page shows you how you can pretty print an xml given an output stream. To get a pretty-printed output stream using DOM, see the answer here by Ted_Hopp:
DOM Printing