Simple是一個高性的XML序列化和配置框架。它提供完整的對象序列化與反序列化功能,并能夠保持它們的關聯關系。Simple與C#的XML序列化相似,但增加了攔截和操作等功能。

@Root
public class Example {
   @Element
   private String text;
   @Attribute
   private int index;
   public Example() {
      super();
   }  
   public Example(String text, int index) {
      this.text = text;
      this.index = index;
   }
   public String getMessage() {
      return text;
   }
   public int getId() {
      return index;
   }
}
Serializer serializer = new Persister();
Example example = new Example("Example message", 123);
File result = new File("example.xml");
serializer.write(example, result);

 本文由用戶 碼頭工人自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!