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;
}