xml解析工具包 Xstream的示例代码详解
特点
简化的API;
无映射文件;
高性能,低内存占用;
整洁的XML;
不需要修改对象,支持内部私有字段;
不需要setter/getter方法,final字段;
提供序列化接口;
自定义转换类型策略;
详细的错误诊断;
Xstream常用注解
@XStreamAlias("message") 别名注解,作用目标:类,字段
@XStreamImplicit 隐式集合
@XStreamImplicit(itemFieldName="part") 作用目标:集合字段
@XStreamConverter(SingleValueCalendarConverter.class) 注入转换器,作用目标: 对象
@XStreamAsAttribute 转换成属性,作用目标:字段
@XStreamOmitField 忽略字段,作用目标:字段
示例
1. 解析XML工具类
import com.thoughtworks.xstream.XStream; import com.thoughtworks.xstream.io.xml.DomDriver; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.*; /** * 输出xml和解析xml的工具类 */ public class XmlUtil { private static final Logger logger = LoggerFactory. getLogger(XmlUtil.class); /** * java 转换成xml * @param obj 对象实例 * @return String xml字符串 * @Title: toXml * @Description: TODO */ public static String toXml(Object obj) { //XStream xstream=new XStream(); //默认使用xpp解析器 //指定编码解析器 XStream xstream = new XStream(new DomDriver("utf-8")); //启用注解识别 xstream.processAnnotations(obj.getClass()); return xstream.toXML(obj); } /** * 将传入xml文本转换成Java对象 * @param xmlStr * @param cls xml对应的class类 * @return T xml对应的class类的实例对象 */ public static <T> T toBean(String xmlStr, Class<T> cls) { XStream xstream = new XStream(); xstream.processAnnotations(cls); T obj = (T) xstream.fromXML(xmlStr); return obj; } /** * 写到xml文件中去 * @param obj 对象 * @param absPath 绝对路径 * @param fileName 文件名 */ public static boolean toXMLFile(Object obj, String absPath, String fileName) { String strXml = toXml(obj); String filePath = absPath + fileName; File file = new File(filePath); if (!file.exists()) { try { file.createNewFile(); } catch (IOException e) { logger.error("file creation failed, cause is {}", e); return false; } } OutputStream ous = null; try { ous = new FileOutputStream(file); ous.write(strXml.getBytes()); ous.flush(); } catch (Exception e1) { logger.error("file write failed, cause is {}", e1); return false; } finally { if (ous != null) try { ous.close(); } catch (IOException e) { e.printStackTrace(); } } return true; } /** * 从xml文件读取报文 * @param absPath 绝对路径 * @param fileName 文件名 * @param cls */ public static <T> T toBeanFromFile(String absPath, String fileName, Class<T> cls) throws Exception { String filePath = absPath + fileName; InputStream ins = null; try { ins = new FileInputStream(new File(filePath)); } catch (Exception e) { throw new Exception("read {" + filePath + "} file failed!", e); } XStream xstream = new XStream(); xstream.processAnnotations(cls); T obj = null; try { obj = (T) xstream.fromXML(ins); } catch (Exception e) { throw new Exception("parse {" + filePath + "} file failed!", e); } if (ins != null) ins.close(); return obj; } }
2. 编写Teacher类
import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamAsAttribute; import com.thoughtworks.xstream.annotations.XStreamImplicit; import java.util.List; @XStreamAlias(value = "teacher") public class Teacher { @XStreamAsAttribute private String name; @XStreamAsAttribute private String phone; @XStreamAsAttribute private int age; @XStreamImplicit(itemFieldName = "student") private List<Student> students; public Teacher() { } public Teacher(String name, String phone, int age, List<Student> students) { this.name = name; this.phone = phone; this.age = age; this.students = students; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public List<Student> getStudents() { return students; } public void setStudents(List<Student> students) { this.students = students; } }
3. 编写Student类
import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamAsAttribute; @XStreamAlias(value = "student") public class Student { @XStreamAsAttribute private String name; @XStreamAsAttribute private int age; @XStreamAsAttribute private String address; public Student() { } public Student(String name, int age, String address) { this.name = name; this.age = age; this.address = address; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } }
4. Test测试类
import java.util.ArrayList; import java.util.List; public class Test { public static void main(String[] args) { Student student1 = new Student("Aaron", 24, "广州"); Student student2 = new Student("Abel", 23, "北京"); List<Student> students = new ArrayList<>(); students.add(student1); students.add(student2); Teacher teacher = new Teacher("Dave", "020-123456", 46, students); String xml = XmlUtil.toXml(teacher); System.out.println(xml); } }
5. 运行结果
<teacher name="Dave" phone="020-123456" age="46"> <student name="Aaron" age="24" address="广州"/> <student name="Abel" age="23" address="北京"/> </teacher>
以上是xml解析工具包 Xstream的示例代码详解的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

XML文件可以用PPT打开吗?XML,即可扩展标记语言(ExtensibleMarkupLanguage),是一种被广泛应用于数据交换和数据存储的通用标记语言。与HTML相比,XML更加灵活,能够定义自己的标签和数据结构,使得数据的存储和交换更加方便和统一。而PPT,即PowerPoint,是微软公司开发的一种用于创建演示文稿的软件。它提供了图文并茂的方

使用Python实现XML数据的合并和去重XML(eXtensibleMarkupLanguage)是一种用于存储和传输数据的标记语言。在处理XML数据时,有时候我们需要将多个XML文件合并成一个,或者去除重复的数据。本文将介绍如何使用Python实现XML数据的合并和去重的方法,并给出相应的代码示例。一、XML数据合并当我们有多个XML文件,需要将其合

使用Python实现XML数据的筛选和排序引言:XML是一种常用的数据交换格式,它以标签和属性的形式存储数据。在处理XML数据时,我们经常需要对数据进行筛选和排序。Python提供了许多有用的工具和库来处理XML数据,本文将介绍如何使用Python实现XML数据的筛选和排序。读取XML文件在开始之前,我们需要先读取XML文件。Python有许多XML处理库,

Python中的XML数据转换为CSV格式XML(ExtensibleMarkupLanguage)是一种可扩展标记语言,常用于数据的存储和传输。而CSV(CommaSeparatedValues)则是一种以逗号分隔的文本文件格式,常用于数据的导入和导出。在处理数据时,有时需要将XML数据转换为CSV格式以便于分析和处理。Python作为一种功能强大

使用PHP将XML数据导入数据库引言:在开发中,我们经常需要将外部数据导入到数据库中进行进一步的处理和分析。而XML作为一种常用的数据交换格式,也经常被用来存储和传输结构化数据。本文将介绍如何使用PHP将XML数据导入数据库。步骤一:解析XML文件首先,我们需要解析XML文件,提取出需要的数据。PHP提供了几种解析XML的方式,其中最常用的是使用Simple

Python实现XML和JSON之间的转换导语:在日常的开发过程中,我们常常需要将数据在不同的格式之间进行转换。XML和JSON是常见的数据交换格式,在Python中,我们可以使用各种库来实现XML和JSON之间的相互转换。本文将介绍几种常用的方法,并附带代码示例。一、XML转JSON在Python中,我们可以使用xml.etree.ElementTree模

使用Python处理XML中的错误和异常XML是一种常用的数据格式,用于存储和表示结构化的数据。当我们使用Python处理XML时,有时可能会遇到一些错误和异常。在本篇文章中,我将介绍如何使用Python来处理XML中的错误和异常,并提供一些示例代码供参考。使用try-except语句捕获XML解析错误当我们使用Python解析XML时,有时候可能会遇到一些

Python解析XML中的特殊字符和转义序列XML(eXtensibleMarkupLanguage)是一种常用的数据交换格式,用于在不同系统之间传输和存储数据。在处理XML文件时,经常会遇到包含特殊字符和转义序列的情况,这可能会导致解析错误或者误解数据。因此,在使用Python解析XML文件时,我们需要了解如何处理这些特殊字符和转义序列。一、特殊字符和
