osglworks / java-tool

Some simple common Java utilities
Apache License 2.0
52 stars 18 forks source link

XML to JSON converter - handle `[CDATA` #225

Closed greenlaw110 closed 4 years ago

greenlaw110 commented 4 years ago

With the following XML data:

<xml>
    <appid><![CDATA[wx12345]]></appid>
</xml>

It shall convert to the following JSON:


{
   "appid": "wx12345"
}