xml和json互转工具类

分享一个json与xml互转的工具类,非常好用

一、maven依赖

<!-->json 和 xm 互转</!--><dependency><groupId>org.dom4j</groupId><artifactId>dom4j</artifactId><version>2.1.3</version></dependency><dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>1.2.83</version></dependency><dependency><groupId>com.google.code.gson</groupId><artifactId>gson</artifactId></dependency>

二、工具类代码

package com.test.main;import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;import java.util.List;
import java.util.Map;
import java.util.Set;public class JsonXmlUtils {public  static JSONObject toJson(String xml){JSONObject jsonObject = new JSONObject();Document document = null;try {document = DocumentHelper.parseText(xml);} catch (DocumentException e) {e.printStackTrace();}//获取根节点元素对象Element root = document.getRootElement();return xmlToJson(root,jsonObject);}public static JSONObject  xmlToJson(Element node,JSONObject json){//获取子节点listList<Element> list = node.elements();//获取节点名字String name = node.getName();//最下面的一层if(list.isEmpty()){String nodeValue = node.getTextTrim();json.put(name, nodeValue);}else{//下级节点进行嵌套JSONObject js = new JSONObject();//判断json数据中是否存在相同的 key//存在相同的key需要使用数组存储if(json.containsKey(name)){JSONArray jsonArray = null;Object o = json.get(name);if(o instanceof JSONArray){jsonArray=(JSONArray) o;}else{jsonArray = new JSONArray();jsonArray.add(o);}json.put(name,jsonArray);jsonArray.add(js);}else {json.put(name,js);}//递归for (Element element : list) {xmlToJson(element,js);}}return json;}/*** 将json字符串转换成xml** @param json*            json字符串* @throws Exception*/public static Element toXml(String json,Element root) {JsonObject jsonObject = new JsonParser().parse(json).getAsJsonObject();Element ee = jsonToXml(jsonObject, root, null);return ee.elements().get(0);}/*** 将json字符串转换成xml** @param jsonElement*            待解析json对象元素* @param parentElement*            上一层xml的dom对象* @param name*            父节点*/public static Element jsonToXml(JsonElement jsonElement, Element parentElement, String name) {if (jsonElement instanceof JsonArray) {//是json数据,需继续解析JsonArray sonJsonArray = (JsonArray)jsonElement;for (int i = 0; i < sonJsonArray.size(); i++) {JsonElement arrayElement = sonJsonArray.get(i);jsonToXml(arrayElement, parentElement, name);}}else if (jsonElement instanceof JsonObject) {//说明是一个json对象字符串,需要继续解析JsonObject sonJsonObject = (JsonObject) jsonElement;Element currentElement = null;if (name != null) {currentElement = parentElement.addElement(name);}Set<Map.Entry<String, JsonElement>> set = sonJsonObject.entrySet();for (Map.Entry<String, JsonElement> s : set) {jsonToXml(s.getValue(), currentElement != null ? currentElement : parentElement, s.getKey());}} else {//说明是一个键值对的key,可以作为节点插入了Element el = parentElement.addElement(name);el.addText(jsonElement.getAsString());}return parentElement;}}

三、实体类

这里为了更全面的演示,所以嵌套三层

第三层:

public class PeopleBase {private People people;public PeopleBase(People people) {this.people = people;}
}

第二层:

@Data
public class People {private String name;private Integer age;private List<PeopleOther> likes;
}

第三层:

@Data
public class PeopleOther {private String like;
}

四、使用方式

json转xml 

public static void main(String[] args) throws Exception {People people = new People();people.setName("张三");people.setAge(1);PeopleOther peopleOther1 = new PeopleOther();peopleOther1.setLike("冰淇淋");PeopleOther peopleOther2 = new PeopleOther();peopleOther2.setLike("巧克力");List<PeopleOther> likes = new ArrayList<>();likes.add(peopleOther1);likes.add(peopleOther2);people.setLikes(likes);// 将json转为xmlElement root = new BaseElement("root");System.out.println(JsonXmlUtils.toXml(new Gson().toJson(new PeopleBase(people)), root).asXML());}

xml转json:

public static void main(String[] args) throws Exception {String xmlStr = "<people><name>张三</name><age>1</age><likes><like>冰淇淋</like></likes><likes><like>巧克力</like></likes></people>";System.out.println(JsonXmlUtils.toJson(xmlStr));}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/91213.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

git私房菜

文章目录 1、公司项目开发Git协作流程2、合并相关的操作3、Git常用命令总结 公司中如何使用Git协同开发的&#xff1f;本文将具体介绍开发模式&#xff0c;以及一些常用命令。 1、公司项目开发Git协作流程 公司一个完整的项目出来&#xff0c;项目的推进是在主分支master上进行…

登录校验-Filter-登录校验过滤器

目录 思路 登录校验Filter-流程 步骤 流程图 登录校验Filter-代码 过滤器类 工具类 测试登录 登录接口功能请求 其他接口功能请求 前后端联调 思路 前端访问登录接口&#xff0c;登陆成功后&#xff0c;服务端会生成一个JWT令牌&#xff0c;并返回给前端&#xff0…

【使用DataEase数据可视化分析工具访问cpolar】

DataEase 是开源的数据可视化分析工具&#xff0c;帮助用户快速分析数据并洞察业务趋势&#xff0c;从而实现业务的改进与优化。是开源的数据可视化分析工具&#xff0c;帮助用户快速分析数据并洞察业务趋势&#xff0c;从而实现业务的改进与优化。 在本地搭建后,借助cpolar 内…

实现公网远程访问:Windows本地快速搭建SFTP文件服务器并配置端口映射

文章目录 1. 搭建SFTP服务器1.1 下载 freesshd服务器软件1.3 启动SFTP服务1.4 添加用户1.5 保存所有配置 2 安装SFTP客户端FileZilla测试2.1 配置一个本地SFTP站点2.2 内网连接测试成功 3 使用cpolar内网穿透3.1 创建SFTP隧道3.2 查看在线隧道列表 4. 使用SFTP客户端&#xff0…

Web后端开发(请求响应)上

请求响应的概述 浏览器&#xff08;请求&#xff09;<--------------------------(HTTP协议)---------------------->&#xff08;响应&#xff09;Web服务器 请求&#xff1a;获取请求数据 响应&#xff1a;设置响应数据 BS架构&#xff1a;浏览器/服务器架构模式。…

Android Native Code开发学习(一)环境配置

Android Native Code开发学习&#xff08;一&#xff09; 本教程为native code学习笔记&#xff0c;希望能够帮到有需要的人 我的电脑系统为ubuntu 22.04&#xff0c;当然windows也是可以的&#xff0c;区别不大 环境配置 首先我们新建一个native C项目 然后我们下载NDK和C…

无涯教程-Android Intent Standard Extra Data函数

下表列出了各种重要的Android Intent Standard Extra Data。您可以查看Android官方文档以获取额外数据的完整列表- Sr.NoExtra Data & Description1 EXTRA_ALARM_COUNT 用作AlarmManager intents(意图)中的int Extra字段,以告诉正在调用的应用程序intents(意图)释放了多少…

【JasperReports笔记06】JasperReport报表开发之常见的组件元素(Table、Subreport、Barcode等)

这篇文章&#xff0c;主要介绍JasperReport报表开发之常见的组件元素&#xff08;Table、Subreport、Barcode等&#xff09;。 目录 一、基础组件元素 1.1、StaticText 1.2、TextField 1.3、Image 1.4、Break分页 1.5、Rectangle矩形区域 1.6、Ellipse椭圆区域 1.7、Li…

七天内连续登陆天数

一、需求描述 业务理解1&#xff1a;七天内最大连续登陆天数 业务理解2&#xff1a;七天内最近连续登陆天数&#xff08;最近一天如果未登陆则连续登陆天数为0&#xff09; 示例说明&#xff1a; 二、数据结构 流量表 tracking 字段名字段中文名userid用户iddt分区 口径描…

MySQL连接查询和存储过程

目录 一、连接查询 1、内连接 2、左连接 3、右连接 二、存储过程 1、存储过程简介 2、存储过程的优点 3、语法 4、不带参数的存储过程创建 5、带参数的存储过程创建 6、删除存储过程 三、总结 1、连接查询 2、存储过程 一、连接查询 mysql的连接查询&#xff0c;通…

HCIP-HCS华为私有云的使用

1、概述 华为公有云&#xff08;HC&#xff09;、华为私有云&#xff08;HCS&#xff09;华为混合云&#xff08;HCSO&#xff09;。6.3 之前叫FusionSphere OpenStack&#xff0c;6.3.1 版本开始叫FusionCloud&#xff0c;6.5.1 版本开始叫Huawei Cloud Stack (HCS)华为私有云…

[Pandas] 求百分比并添加百分(%)号

导入数据 import pandas as pddf pd.DataFrame(data{orders: [2130,5102,3256,1297,1918,786],repeat_orders: [73,158,89,30,49,18]}) df df[repetition_rate] df[repeat_orders] / df[orders] df df[repetition_rate] df[repetition_rate].apply(lambda x: format(x, .2…