关于Json和xml文件的相互转化

关于Json和xml文件的相互转化

需要两个依赖:

fastjson用于Json向JavaBean的互相转化,可以很好的做到这一点,非常简单。
xstream用于JavaBean和xml文件相互转换

		<dependency>
            <groupId>com.thoughtworks.xstream</groupId>
            <artifactId>xstream</artifactId>
            <version>1.4.7</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.62</version>
        </dependency>
上一篇:FastJson使用


下一篇:FastJson---重要的类为JSONObject