如何从 xml 字符串内容构建分层配置对象?

How to build HierarchicalConfiguration object from xml string content?

我有 xml 字符串内容,它作为请求主体的一部分在 rest API、

中传递
<?xml version="1.0" encoding="UTF-8"?>
<sdp xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="repository://schemas/sdp-config.xsd">
<helpPage>/mstinc/sdp/help/index.html</helpPage>
<ib>
    <siteUrl>/onlineserv/HB/</siteUrl>
    <startUpPage>
        <sdpUrl>SECONDARY~PRIMARY_BUTTON_ACCOUNT_ACCESS.NAME~ACCOUNT_ACCESS_SECONDARY_BUTTON_SDP.NAME</sdpUrl>
        <otherUrl>SECONDARY~PRIMARY_BUTTON_ACCOUNT_ACCESS.NAME~ACCOUNT_ACCESS_SECONDARY_BUTTON_ACCOUNT_SUMMARY.NAME</otherUrl>
        <axisConfValue>true</axisConfValue>
    </startUpPage>
 </ib>

我想构建 HierarchicalConfiguration 对象,以便我可以使用

遍历键
Iterator keys = {hierachicalObject}.getKeys();

我不想创建文件,因为内容是针对每个请求动态传递的。我该怎么做?

我认为您可以从字符串中的标记获取信息并使用该字符串。

例如:

DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
        Document doc = documentBuilder.parse(xmlFile);
        doc.getDocumentElement().normalize();
String keys = doc.getElementsByTagName("sdpUrl").item(0).getTextContent();

然后使用按键。但是有使用文件。 在那里你可以阅读如何从 String XML 获取数据:Read a XML (from a string) and get some fields - Problems reading XML