Open-source-sharing / REST-doc

RESTdoc Project is a document software that improves research and development efficiency. It integrates testing and document generation. It can quickly import the application's Http API or RPC API to quickly generate documents.
Apache License 2.0
1 stars 2 forks source link

Java saxreader技术解析xml解析与反解析需求 #27

Open Maple-mxf opened 3 years ago

Maple-mxf commented 3 years ago

术语:xml解析为一个带有path路径的平级数据称为projector 一个带有path的平级数据解析为xml称为deProjector

xml需求示例

<student>
    <name id="001">张三</name>
    <sex>男</sex>
    <age>20</age>
</student>

projector的输入为上述xml字符串,输出如下:

deProjector输入为

输出为下

<student>
    <name id="001">张三</name>
    <sex>男</sex>
    <age>20</age>
</student>