遍历XML文档的所有节点?
我想遍历 if_ixml_document 的整个节点。这是最好的方法吗?
请找到示例文档。
<text>
<id>
<guid auto="false">
432543254543
</guid>
</id>
<title>
<short_title italics="on">
<bold language = "german">
"Hello"
</bold>
</short_title>
</title> </text>
在本文档中,我需要遍历节点
等。
提前致以
问候, 亚历克斯
I want to traverse through the entire nodes of an if_ixml_document. which is the best way to do this?
Please find the sample document.
<text>
<id>
<guid auto="false">
432543254543
</guid>
</id>
<title>
<short_title italics="on">
<bold language = "german">
"Hello"
</bold>
</short_title>
</title> </text>
In this document, i need to traverse through the nodes <text>, <id>, <guid> , <title>, <short_title>, <bold>
etc.
Thanks in advance
Regards,
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
第一步是按如下方式解析 XML。当然,您可以将文件中的 XML 上传到字符串中,但这只是一个示例:
现在您有一个 IF_XML_NODE 实例,它指向 XML 文档的根目录。现在,您可以使用各种方法来遍历 XML 树,并使用各种方法(例如 GET_CHILDREN、GET_ATTRIBUTES、GET_NAME 等)从中获取值。
这对于相当小的 XML 文档来说是可以的,但为了提高效率,如果您是寻找一组特定的节点,您可能需要考虑使用 XPATH 查询。
The first step is to parse your XML as follows. You can of course upload the XML from a file into the string, but this is just an example:
Now you have an instance of IF_XML_NODE that points to the root of your XML document. You can now use the various methods to traverse the XML tree, and get values out of it, using the various methods such as GET_CHILDREN, GET_ATTRIBUTES, GET_NAME etc.
This will be OK for fairly small XML documents, though for efficiency, if you are looking for a specific set of nodes, you may want to look at using an XPATH query.
您可以在以下位置找到详细的 XML 手册SAP 的文档网站(如果链接无法正常工作,请访问help.sap.com 上的 NetWeaver 开发人员指南并搜索“xml 库” ')。
“iXML ABAP 对象快速入门”一章应该可以帮助您快速入门。 “迭代整个 DOM 树”段落提供了以下示例代码:
You can find an extensive XML manual on SAP's documentation website (in case the link doesn't work correctly, go to the NetWeaver Developer's Guide on help.sap.com and search for 'xml library').
The chapter 'iXML ABAP Objects Jumpstart' should get you started quickly. The paragraph 'Iterating over the complete DOM-tree' provides the following example code:
我希望下面的例子可以澄清这种情况:
享受,
亚历山大.
I hope following example can clarify the situation:
Enjoy,
Alexander.
在不断变化的环境中,手动 xml 遍历容易出错且复杂。您可能想检查是否真的需要直接代码遍历。
借助 (XSLT) 转换,您可以将 XML 转换为 ABAP 结构化类型。支持 XPath。
转换的声明、测试和调试是使用事务
STRANS
打开的转换编辑器完成的。XSLT 可用作转换类型:
ABAP XSLT 转换
在您的 ABAP 代码中,您只需调用语言元素
CALL TRANSFORMATION
然后数据就准备好在目标结构中进行处理:ABAP 语句:“调用转换”
Manual xml traversing is error prone and complicated in changing environments. You may want to check whether you really need a direct code traversal.
With the help of (XSLT) transformations you are able to convert XML into ABAP structured types. XPath is supported.
Declaration, test and debugging of transformations is done using the Transformation Editor opened by transaction
STRANS
.XSLT is available as transformation type:
ABAP XSLT Transformation
In your ABAP Code you will just call the language element
CALL TRANSFORMATION
and the data is ready to process in your target structure afterwards:ABAP Statement: 'CALL TRANSFORMATION'
您可以使用
DocumentTraversal
接口,该接口应该由任何 DOM 库实现(Xerces 有它):You can use the
DocumentTraversal
interface which should be implemented by any DOM library (Xerces has it):