soap xml->JavaBean、JavaBean->xml 相互转换 hutool

1. XML 转 JavaBean

单层结构数据解析

public static void main(String[] args) {
        String s = "<sf_zh>123</sf_zh><s_FZ>456</s_FZ><Name>aa</Name><GENDER>1</GENDER>";
        // 将 xml 转为 json 对象
        JSONObject json = JSONUtil.parseFromXml(s);
        // 将 json 对象转为 java 实体
        TestDto testDto = JSONUtil.toBean(json, TestDto.class);
        System.out.println(testDto.getSfzh());
    }

解析结果
在这里插入图片描述

多层数据解析

public static void main(String[] args) {
        String s = "<sf_zh>123</sf_zh><sf_zh2><sf_zh_items><sf_zh_item>2</sf_zh_item></sf_zh_items></sf_zh2><s_FZ>456</s_FZ><Name>aa</Name><GENDER>1</GENDER>";
        JSONObject json = JSONUtil.parseFromXml(s);
        TestDto testDto = JSONUtil.toBean(json, TestDto.class);
        System.out.println(testDto.getSfzh());
    }

解析结果
在这里插入图片描述

2. JavaBean 转 XML

public static void main(String[] args) {
        String s = "<sf_zh>123</sf_zh><sf_zh2><sf_zh_items><sf_zh_item>2</sf_zh_item></sf_zh_items></sf_zh2><s_FZ>456</s_FZ><Name>aa</Name><GENDER>1</GENDER>";
        // 将 xml 转为 json 对象
        JSONObject json = JSONUtil.parseFromXml(s);
        // 将 json 对象转为 java 实体
        TestDto testDto = JSONUtil.toBean(json, TestDto.class);

        // 将 java 实体转为 json 对象
        JSONObject json2 = JSONUtil.parseObj(testDto);
        // 将 json 对象转为 xml 字符串
        String str = JSONUtil.toXmlStr(json2);
        System.out.println(str);
    }

在这里插入图片描述

3. 实体

TestDto 对象

import cn.hutool.core.annotation.Alias;
import lombok.Data;
@Data
public class TestDto {
    @Alias("sf_zh")
    private String sfzh;

    @Alias("sf_zh2")
    private TestListDto sfzh2;

    @Alias("s_FZ")
    private String sfz;

    @Alias("Name")
    private String name;

    @Alias("GENDER")
    private String gender;
}

TestListDto 对象

import cn.hutool.core.annotation.Alias;
import java.util.List;
import lombok.Data;

@Data
public class TestListDto {
    @Alias("sf_zh_items")
    private List<TestItemDto> sfzhItems;
}

TestItemDto 对象

import cn.hutool.core.annotation.Alias;
import lombok.Data;

@Data
public class TestItemDto {
    @Alias("sf_zh_item")
    private String sfzhItem;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zhaojc2025

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值