如何在黑莓控制台上打印 xml 节点的值

发布于 2024-12-06 21:41:11 字数 466 浏览 0 评论 0原文

我已经创建了用于解析的节点,但我不知道如何显示该节点中的值。听到是我的节点,我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与酒说心事 2024-12-13 21:41:11

看看这里如何漂亮地打印 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文