Suggestion to parse this XML in Java

后端 未结 3 1085
长发绾君心
长发绾君心 2021-01-25 11:00

Not new to Java; but relatively new to XML-parsing. I know a tiny bit about a lot of the XML tools out there, but not much about any of them. I am also not an XML-pro.

3条回答
  •  一整个雨季
    2021-01-25 11:57

    You can use SAXParser or STAXParser. If you can afford some more amount of memory, then you can also afford to use DOMParser. I would advise STAXParser would be best for you.

提交回复
热议问题