WEB开发网
开发学院软件开发Java 使用 Simple 简化 XML 序列化 阅读

使用 Simple 简化 XML 序列化

 2010-01-08 00:00:00 来源:WEB开发网   
核心提示: 解压文件之后,注意在 jar 目录中有一个 JAR 文件(simple-xml-2.1.4.jar),使用 Simple 简化 XML 序列化(2),在编译时和运行时,类路径中需要有这个 JAR 文件,我们来回顾一下熟悉的鱼饵主题(当然只有读过我的文章的读者熟悉),所以,序列化将一个对象序列化成

解压文件之后,注意在 jar 目录中有一个 JAR 文件(simple-xml-2.1.4.jar)。在编译时和运行时,类路径中需要有这个 JAR 文件。

序列化

将一个对象序列化成一个 XML 文档是一个相当简单的过程。涉及到两步:

创建具有适当注解的 POJO。

编写不多的几行代码,用于真正执行序列化过程。

为了本文目的,我们来回顾一下熟悉的鱼饵主题(当然只有读过我的文章的读者熟悉)。所以,清单 1 是一个表示鱼饵信息的 POJO。


清单 1. Lure 类

@Root 
public class Lure { 
 
   @Attribute 
   private String type; 
 
   @Element 
   private String company; 
 
   @Element 
   private int quantityInStock; 
 
   @Element 
   private String model; 
 
   public String getType() { 
 return type; 
   } 
 
   public void setType(String type) { 
     this.type = type; 
   } 
 
   public String getCompany() { 
     return company; 
   } 
 
   public void setCompany(String company) { 
     this.company = company; 
   } 
 
   public int getQuantityInStock() { 
     return quantityInStock; 
   } 
 
   public void setQuantityInStock(int quantityInStock) { 
     this.quantityInStock = quantityInStock; 
   } 
 
   public String getModel() { 
     return model; 
   } 
 
   public void setModel(String model) { 
     this.model = model; 
   } 
} 

上一页  1 2 3 4 5 6 7  下一页

Tags:使用 Simple 简化

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接