castor是一个可以把java对象和XML进行相互转换的工具包。另外把 Java 对象绑定到 SQL 数据库。在这里,我只说一下java对象和XML的转换。
官方网站:http://www.castor.org/download.html 下载Castor
Castor 几乎是 JAXB 的替代品.Castor 提取出 XML 文档中的数据,并使用自己的 Java 类处理数据。用数据绑定术语来说,这称为解组(unmarshalling)。反向的过程称为编组(marshalling):您应该能够把 Java 类的成员变量中存储的数据转换为 XML 文档.
使用Castor XML
一、 简介
Castor XML是一种XML数据绑定框架。
XML的另外两种主要API:DOM和SAX(Document Object Model和Simple API for XML),主要是从结构的角度去处理XML文件,而Castor XML是以对象的模式去处理XML文档中的数据
大多数情况下,转换框架通过ClassDescriptor和FieldDescriptor来描述转换时所需要的信息。
二、 转换框架
转换框架中最主要的两个类是:org.exolab.castor.xml.Marshaller和org.exolab.castor.xml.Unmarshaller
marshal: Marshaller.marshal(obj,writer);
unmarshal: Unmarshaller.unmarshal(Person.class,reader);
上面的这种转换方式,只适合于按照默认方式进行转化,如果要使用映射文件,需要采用以下方式。
marshal:
Mapping mapping = new Mapping();
mapping.loadMapping(“mapping.xml”);
Marshaller marshaller = new Marshaller(writer);
marshaller.setMapping(mapping);
marshaller.marshal(obj);
Marshaller的5个marshal方法中,只有marshal(Object obj)这个方法不是静态的,其他的四个都是静态的marshal(obj,writer), marshal(obj,handler), marshal(obj,node)
unmarshal:
Mapping mapping = new Mapping();
mapping .loadMapping(“mapping.xml”);
Unmarshaller unm = new Unmarshaller(“Person.class”);//使用Person.class作为构造Unmarshaller的参数
unm.setMapping(mapping);
Person person = (Person)unm.unmarshal(reader);
Unmarshaller中,object可以从reader中转换而来,也可以从source、node转换而来,静态方法均是两个参数,非静态方法都是一个来源作为参数。
三、 使用存在的Class和对象
Castor几乎可以将任何对象和XML进行转换。当指定class的描述文件不存在时,转换框架使用默认的reflection机制来获得对象的信息。
转化对象存在的主要约束是:
这些class必须有一个public而且default的构造函数;必须有adequate get/set方法。
四、 类描述符(ClassDescriptor)
org.exolab.castor.xml.XMLClassDescriptor
类描述符提供转换时所需的必要信息。ClassDescriptor不仅可以用于Castor XML,还可以用于Castor JDO
类描述符包括一组字段描述符(FieldDescriptor)
类描述符通常情况下有四种创建方式,两种在编译时(效率较高),两种在运行时(较为方便)
编译时描述符:
1. 让需要被describe的类实现org.exolab.castor.xml.XMLClassDescriptor接口
2. 使用Source Code Generator创建合适的descriptor
运行时描述符:
3. 默认,使用Castor的introspect机制
4. 提供mapping文件,或者默认和配置文件并用
使用”default introspection”机制必须为每一个要转换的field配备对应的get/set方法;
如果没有get/set方法,但是是public的field,也可以以direct field access的方式被转换;
但是如果一个类中为有的成员定义了get/set方法,即使其他成员是public的,也不会被转换;
自动内省机制是自动触发的。可以通过castor.properties文件控制自动转换的特性,比如改变名称转换、基本型别是转换为attribute还是element等。
Mapping文件也可以用来描述要被转换的类。mapping的装载发生在marshal和unmarshal之前(org.exolab.castor.mapping.Mapping)
例子一:
编组(marshalling)
类CD :
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class CD implements Serializable {
private String name;
private String artist;
private List tracks;
public CD() {
super();
}
public CD(String name, String artist) {
super();
this.name = name;
this.artist = artist;
}
/**
* @return the artist
*/
public String getArtist() {
return artist;
}
/**
* @param artist the artist to set
*/
public void setArtist(String artist) {
this.artist = artist;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the tracks
*/
public List getTracks() {
return tracks;
}
/**
* @param tracks the tracks to set
*/
public void setTracks(List tracks) {
this.tracks = tracks;
}
public void addTracks(String trackName) {
if(tracks == null) {
tracks = new ArrayList();
}
tracks.add(trackName);
}
}
二:测试类MarshallerTest
import java.io.FileWriter;
import org.exolab.castor.xml.Marshaller;
import cn.wikeup.com.bean.CD;
public class MarshallerTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
CD sessions = new CD("Sessions for Robert J","Eric Clapton");
sessions.addTracks("Litte Queen of Spades");
sessions.addTracks("Terraplane Blues");
try {
FileWriter writer = new FileWriter("cds.xml");
Marshaller.marshal(sessions, writer);
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
}
}
三:结果cds.xml
<?xml version="1.0" encoding="UTF-8" ?>
- <CD>
<artist>Eric Clapton</artist>
<tracks>Litte Queen of Spades</tracks>
<tracks>Terraplane Blues</tracks>
<name>Sessions for Robert J</name>
</CD>
解组(unmarshalling)
一:测试类
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.List;
import org.exolab.castor.xml.Unmarshaller;
import cn.wikeup.com.bean.CD;
public class UnmarshalTest {
public static void main(String[] args) {
try {
FileReader reader = new FileReader("cds.xml") ;
CD cd = (CD) Unmarshaller.unmarshal(CD.class, reader);
System.out.println("CD title:" + cd.getName());
System.out.println("CD artist:" + cd.getArtist());
List tracks = cd.getTracks();
if(tracks == null ) {
System.out.println("NO tracks.");
} else {
for(Object track :tracks) {
System.out.println("Track:" + track.toString());
}
}
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.print(e.getMessage());
e.printStackTrace(System.err);
}
}
}
二结果:
CD title:Sessions for Robert J
CD artist:Eric Clapton
Track:Litte Queen of Spades
Track:Terraplane Blues
例子二:
类Book
package cn.wikeup.com.bean;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
public class Book {
private String isbn;
private String title;
private List<Author> authors;
public Book() {
}
// private String authorName;
// private List authorNames;
/* public Book(String isbn, String title, List authorNames) {
this.isbn = isbn;
this.title = title;
this.authorNames = authorNames;
}
public Book(String isbn, String title, String authorName) {
this.isbn = isbn;
this.title = title;
this.authorNames = new LinkedList();
this.authorNames.add(authorName);
}
public void addAuthorName(String authorName) {
authorNames.add(authorName);
}
public List getAuthorNames() {
return authorNames;
}
public void setAuthorNames(List authorNames) {
this.authorNames = authorNames;
}
*/
public Book(String isbn, String title, List<Author> authors) {
this.isbn = isbn;
this.title = title;
this.authors = authors;
}
public Book(String isbn, String title, Author author) {
this.isbn = isbn;
this.title = title;
this.authors = new ArrayList<Author>();
this.authors.add(author);
}
public void addAuthor(Author author) {
this.authors.add(author);
}
/**
* @return the authors
*/
public List<Author> getAuthors() {
return authors;
}
/**
* @param authors the authors to set
*/
public void setAuthors(List<Author> authors) {
this.authors = authors;
}
/**
* @return the isbn
*/
public String getIsbn() {
return isbn;
}
/**
* @param isbn the isbn to set
*/
public void setIsbn(String isbn) {
this.isbn = isbn;
}
/**
* @return the title
*/
public String getTitle() {
return title;
}
/**
* @param title the title to set
*/
public void setTitle(String title) {
this.title = title;
}
}
类Author
package cn.wikeup.com.bean;
public class Author {
private String firstName, lastName;
// private int totalSales;
public Author() {
}
public Author(String firstName, String lastName) {
super();
this.firstName = firstName;
this.lastName = lastName;
}
/**
* @param firstName the firstName to set
*/
public void setFirstName(String firstName) {
this.firstName = firstName;
}
/**
* @param lastName the lastName to set
*/
public void setLastName(String lastName) {
this.lastName = lastName;
}
/**
* @return the firstName
*/
public String getFirstName() {
return firstName;
}
/**
* @return the lastName
*/
public String getLastName() {
return lastName;
}
/**
* @param totalSales the totalSales to set
*/
// public void setTotalSales(int totalSales) {
// this.totalSales = totalSales;
// }
//
// public void addToSales(int additionalSales) {
// this.totalSales += additionalSales;
// }
//
// public int getTotalSales() {
// return this.totalSales;
// }
}
映射xml
book-mapping.xml
<?xml version="1.0"?>
<!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN"
"http://castor.org/mapping.dtd">
<mapping>
<class name="cn.wikeup.com.bean.Book">
<map-to xml="book" />
<field name="Title" type="java.lang.String">
<bind-xml name="title" node="element" location="book-info" />
</field>
<field name="Isbn" type="java.lang.String">
<bind-xml name="isbn" node="element" location="book-info" />
</field>
<field name="Authors" type="cn.wikeup.com.bean.Author" collection="arraylist">
<bind-xml name="author" />
</field>
</class>
<class name="cn.wikeup.com.bean.Author">
<field name="FirstName" type="java.lang.String">
<bind-xml name="first" node="attribute" location="name" />
</field>
<field name="LastName" type="java.lang.String">
<bind-xml name="last" node="attribute" location="name" />
</field>
</class>
</mapping>
编组(marshalling)
package cn.wikeup.com.castor;
import java.io.FileWriter;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.exolab.castor.mapping.Mapping;
import org.exolab.castor.xml.Marshaller;
import cn.wikeup.com.bean.Author;
import cn.wikeup.com.bean.Book;
public class BookMapMarshaller {
/**
* @param args
*/
public static void main(String[] args) {
Mapping mapping = new Mapping();
try {
List<Author> authors = new ArrayList<Author>();
Book book = new Book();
authors.add(new Author("yytian", "tian"));
authors.add(new Author("yytian1", "tian1"));
book.setAuthors(authors);
book.setIsbn("11111111111111111");
book.setTitle("thing in java");
mapping.loadMapping("book-mapping.xml");
FileWriter writer = new FileWriter("book7.xml");
Marshaller marshaller = new Marshaller(writer);
marshaller.setMapping(mapping);
marshaller.marshal(book);
System.out.println("Book ISBN: " + book.getIsbn());
System.out.println("Book Title: " + book.getTitle());
authors = book.getAuthors();
for (Iterator i = authors.iterator(); i.hasNext(); ) {
Author author = (Author)i.next();
System.out.println("Author: " + author.getFirstName() + " " +
author.getLastName());
}
System.out.println();
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
}
}
结果:book7.xml
<?xml version="1.0" encoding="UTF-8" ?>
- <book>
- <book-info>
<title>thing in java</title>
<isbn>11111111111111111</isbn>
</book-info>
- <author>
<name first="yytian" last="tian" />
</author>
- <author>
<name first="yytian1" last="tian1" />
</author>
</book>
解组(unmarshalling)
package cn.wikeup.com.castor;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;
import org.exolab.castor.mapping.Mapping;
import org.exolab.castor.mapping.MappingException;
import org.exolab.castor.xml.Unmarshaller;
import cn.wikeup.com.bean.Author;
import cn.wikeup.com.bean.Book;
public class BookMapUnmarshaller {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Mapping mapping = new Mapping();
try {
mapping.loadMapping("book-mapping.xml");
FileReader reader = new FileReader("book7.xml");
Unmarshaller unmarshaller = new Unmarshaller(Book.class);
unmarshaller.setMapping(mapping);
Book book = (Book) unmarshaller.unmarshal(reader);
List<Author> authors = book.getAuthors();
for(Author author:authors) {
System.out.println("Author: " + author.getFirstName() + " " +
author.getLastName());
}
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
}
}
结果:
Author: yytian tian
Author: yytian1 tian1
注意点:
1.这些class必须有一个public而且default的构造函数;必须有get/set方法。
2.Java采用用驼峰式(camel-case)命名法比如 de>firstNamede>,XML的风格为(比如 de>first-namede>)映射为 Java 风格的名称(比如 de>firstNamede>)
3.mapping文件中
<field name="Title" type="java.lang.String"> <bind-xml name="title" node="element" /> </field>Castor 通过调用 de>set[PropertyName]()de> 来使用这个属性名。例如setTitle中的Title【<field name="Title】,对应于xml中的title【<bind-xml name="title"】参考资料:
1、实现 Castor 数据绑定,第 1 部分: 安装和设置 castor
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor1/
2、实现 Castor 数据绑定,第 2 部分: 编组和解组 XML
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor2/
3、实现 Castor 数据绑定,第 3 部分: 模式之间的映射
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor3/
4、实现 Castor 数据绑定,第 4 部分: 把 Java 对象绑定到 SQL 数据库
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor4/index.html
官方网站:http://www.castor.org/download.html 下载Castor
Castor 几乎是 JAXB 的替代品.Castor 提取出 XML 文档中的数据,并使用自己的 Java 类处理数据。用数据绑定术语来说,这称为解组(unmarshalling)。反向的过程称为编组(marshalling):您应该能够把 Java 类的成员变量中存储的数据转换为 XML 文档.
使用Castor XML
一、 简介
Castor XML是一种XML数据绑定框架。
XML的另外两种主要API:DOM和SAX(Document Object Model和Simple API for XML),主要是从结构的角度去处理XML文件,而Castor XML是以对象的模式去处理XML文档中的数据
大多数情况下,转换框架通过ClassDescriptor和FieldDescriptor来描述转换时所需要的信息。
二、 转换框架
转换框架中最主要的两个类是:org.exolab.castor.xml.Marshaller和org.exolab.castor.xml.Unmarshaller
marshal: Marshaller.marshal(obj,writer);
unmarshal: Unmarshaller.unmarshal(Person.class,reader);
上面的这种转换方式,只适合于按照默认方式进行转化,如果要使用映射文件,需要采用以下方式。
marshal:
Mapping mapping = new Mapping();
mapping.loadMapping(“mapping.xml”);
Marshaller marshaller = new Marshaller(writer);
marshaller.setMapping(mapping);
marshaller.marshal(obj);
Marshaller的5个marshal方法中,只有marshal(Object obj)这个方法不是静态的,其他的四个都是静态的marshal(obj,writer), marshal(obj,handler), marshal(obj,node)
unmarshal:
Mapping mapping = new Mapping();
mapping .loadMapping(“mapping.xml”);
Unmarshaller unm = new Unmarshaller(“Person.class”);//使用Person.class作为构造Unmarshaller的参数
unm.setMapping(mapping);
Person person = (Person)unm.unmarshal(reader);
Unmarshaller中,object可以从reader中转换而来,也可以从source、node转换而来,静态方法均是两个参数,非静态方法都是一个来源作为参数。
三、 使用存在的Class和对象
Castor几乎可以将任何对象和XML进行转换。当指定class的描述文件不存在时,转换框架使用默认的reflection机制来获得对象的信息。
转化对象存在的主要约束是:
这些class必须有一个public而且default的构造函数;必须有adequate get/set方法。
四、 类描述符(ClassDescriptor)
org.exolab.castor.xml.XMLClassDescriptor
类描述符提供转换时所需的必要信息。ClassDescriptor不仅可以用于Castor XML,还可以用于Castor JDO
类描述符包括一组字段描述符(FieldDescriptor)
类描述符通常情况下有四种创建方式,两种在编译时(效率较高),两种在运行时(较为方便)
编译时描述符:
1. 让需要被describe的类实现org.exolab.castor.xml.XMLClassDescriptor接口
2. 使用Source Code Generator创建合适的descriptor
运行时描述符:
3. 默认,使用Castor的introspect机制
4. 提供mapping文件,或者默认和配置文件并用
使用”default introspection”机制必须为每一个要转换的field配备对应的get/set方法;
如果没有get/set方法,但是是public的field,也可以以direct field access的方式被转换;
但是如果一个类中为有的成员定义了get/set方法,即使其他成员是public的,也不会被转换;
自动内省机制是自动触发的。可以通过castor.properties文件控制自动转换的特性,比如改变名称转换、基本型别是转换为attribute还是element等。
Mapping文件也可以用来描述要被转换的类。mapping的装载发生在marshal和unmarshal之前(org.exolab.castor.mapping.Mapping)
例子一:
编组(marshalling)
类CD :
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class CD implements Serializable {
private String name;
private String artist;
private List tracks;
public CD() {
super();
}
public CD(String name, String artist) {
super();
this.name = name;
this.artist = artist;
}
/**
* @return the artist
*/
public String getArtist() {
return artist;
}
/**
* @param artist the artist to set
*/
public void setArtist(String artist) {
this.artist = artist;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the tracks
*/
public List getTracks() {
return tracks;
}
/**
* @param tracks the tracks to set
*/
public void setTracks(List tracks) {
this.tracks = tracks;
}
public void addTracks(String trackName) {
if(tracks == null) {
tracks = new ArrayList();
}
tracks.add(trackName);
}
}
二:测试类MarshallerTest
import java.io.FileWriter;
import org.exolab.castor.xml.Marshaller;
import cn.wikeup.com.bean.CD;
public class MarshallerTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
CD sessions = new CD("Sessions for Robert J","Eric Clapton");
sessions.addTracks("Litte Queen of Spades");
sessions.addTracks("Terraplane Blues");
try {
FileWriter writer = new FileWriter("cds.xml");
Marshaller.marshal(sessions, writer);
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
}
}
三:结果cds.xml
<?xml version="1.0" encoding="UTF-8" ?>
- <CD>
<artist>Eric Clapton</artist>
<tracks>Litte Queen of Spades</tracks>
<tracks>Terraplane Blues</tracks>
<name>Sessions for Robert J</name>
</CD>
解组(unmarshalling)
一:测试类
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.List;
import org.exolab.castor.xml.Unmarshaller;
import cn.wikeup.com.bean.CD;
public class UnmarshalTest {
public static void main(String[] args) {
try {
FileReader reader = new FileReader("cds.xml") ;
CD cd = (CD) Unmarshaller.unmarshal(CD.class, reader);
System.out.println("CD title:" + cd.getName());
System.out.println("CD artist:" + cd.getArtist());
List tracks = cd.getTracks();
if(tracks == null ) {
System.out.println("NO tracks.");
} else {
for(Object track :tracks) {
System.out.println("Track:" + track.toString());
}
}
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.print(e.getMessage());
e.printStackTrace(System.err);
}
}
}
二结果:
CD title:Sessions for Robert J
CD artist:Eric Clapton
Track:Litte Queen of Spades
Track:Terraplane Blues
例子二:
类Book
package cn.wikeup.com.bean;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
public class Book {
private String isbn;
private String title;
private List<Author> authors;
public Book() {
}
// private String authorName;
// private List authorNames;
/* public Book(String isbn, String title, List authorNames) {
this.isbn = isbn;
this.title = title;
this.authorNames = authorNames;
}
public Book(String isbn, String title, String authorName) {
this.isbn = isbn;
this.title = title;
this.authorNames = new LinkedList();
this.authorNames.add(authorName);
}
public void addAuthorName(String authorName) {
authorNames.add(authorName);
}
public List getAuthorNames() {
return authorNames;
}
public void setAuthorNames(List authorNames) {
this.authorNames = authorNames;
}
*/
public Book(String isbn, String title, List<Author> authors) {
this.isbn = isbn;
this.title = title;
this.authors = authors;
}
public Book(String isbn, String title, Author author) {
this.isbn = isbn;
this.title = title;
this.authors = new ArrayList<Author>();
this.authors.add(author);
}
public void addAuthor(Author author) {
this.authors.add(author);
}
/**
* @return the authors
*/
public List<Author> getAuthors() {
return authors;
}
/**
* @param authors the authors to set
*/
public void setAuthors(List<Author> authors) {
this.authors = authors;
}
/**
* @return the isbn
*/
public String getIsbn() {
return isbn;
}
/**
* @param isbn the isbn to set
*/
public void setIsbn(String isbn) {
this.isbn = isbn;
}
/**
* @return the title
*/
public String getTitle() {
return title;
}
/**
* @param title the title to set
*/
public void setTitle(String title) {
this.title = title;
}
}
类Author
package cn.wikeup.com.bean;
public class Author {
private String firstName, lastName;
// private int totalSales;
public Author() {
}
public Author(String firstName, String lastName) {
super();
this.firstName = firstName;
this.lastName = lastName;
}
/**
* @param firstName the firstName to set
*/
public void setFirstName(String firstName) {
this.firstName = firstName;
}
/**
* @param lastName the lastName to set
*/
public void setLastName(String lastName) {
this.lastName = lastName;
}
/**
* @return the firstName
*/
public String getFirstName() {
return firstName;
}
/**
* @return the lastName
*/
public String getLastName() {
return lastName;
}
/**
* @param totalSales the totalSales to set
*/
// public void setTotalSales(int totalSales) {
// this.totalSales = totalSales;
// }
//
// public void addToSales(int additionalSales) {
// this.totalSales += additionalSales;
// }
//
// public int getTotalSales() {
// return this.totalSales;
// }
}
映射xml
book-mapping.xml
<?xml version="1.0"?>
<!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN"
"http://castor.org/mapping.dtd">
<mapping>
<class name="cn.wikeup.com.bean.Book">
<map-to xml="book" />
<field name="Title" type="java.lang.String">
<bind-xml name="title" node="element" location="book-info" />
</field>
<field name="Isbn" type="java.lang.String">
<bind-xml name="isbn" node="element" location="book-info" />
</field>
<field name="Authors" type="cn.wikeup.com.bean.Author" collection="arraylist">
<bind-xml name="author" />
</field>
</class>
<class name="cn.wikeup.com.bean.Author">
<field name="FirstName" type="java.lang.String">
<bind-xml name="first" node="attribute" location="name" />
</field>
<field name="LastName" type="java.lang.String">
<bind-xml name="last" node="attribute" location="name" />
</field>
</class>
</mapping>
编组(marshalling)
package cn.wikeup.com.castor;
import java.io.FileWriter;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.exolab.castor.mapping.Mapping;
import org.exolab.castor.xml.Marshaller;
import cn.wikeup.com.bean.Author;
import cn.wikeup.com.bean.Book;
public class BookMapMarshaller {
/**
* @param args
*/
public static void main(String[] args) {
Mapping mapping = new Mapping();
try {
List<Author> authors = new ArrayList<Author>();
Book book = new Book();
authors.add(new Author("yytian", "tian"));
authors.add(new Author("yytian1", "tian1"));
book.setAuthors(authors);
book.setIsbn("11111111111111111");
book.setTitle("thing in java");
mapping.loadMapping("book-mapping.xml");
FileWriter writer = new FileWriter("book7.xml");
Marshaller marshaller = new Marshaller(writer);
marshaller.setMapping(mapping);
marshaller.marshal(book);
System.out.println("Book ISBN: " + book.getIsbn());
System.out.println("Book Title: " + book.getTitle());
authors = book.getAuthors();
for (Iterator i = authors.iterator(); i.hasNext(); ) {
Author author = (Author)i.next();
System.out.println("Author: " + author.getFirstName() + " " +
author.getLastName());
}
System.out.println();
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
}
}
结果:book7.xml
<?xml version="1.0" encoding="UTF-8" ?>
- <book>
- <book-info>
<title>thing in java</title>
<isbn>11111111111111111</isbn>
</book-info>
- <author>
<name first="yytian" last="tian" />
</author>
- <author>
<name first="yytian1" last="tian1" />
</author>
</book>
解组(unmarshalling)
package cn.wikeup.com.castor;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;
import org.exolab.castor.mapping.Mapping;
import org.exolab.castor.mapping.MappingException;
import org.exolab.castor.xml.Unmarshaller;
import cn.wikeup.com.bean.Author;
import cn.wikeup.com.bean.Book;
public class BookMapUnmarshaller {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Mapping mapping = new Mapping();
try {
mapping.loadMapping("book-mapping.xml");
FileReader reader = new FileReader("book7.xml");
Unmarshaller unmarshaller = new Unmarshaller(Book.class);
unmarshaller.setMapping(mapping);
Book book = (Book) unmarshaller.unmarshal(reader);
List<Author> authors = book.getAuthors();
for(Author author:authors) {
System.out.println("Author: " + author.getFirstName() + " " +
author.getLastName());
}
} catch (Exception e) {
// TODO Auto-generated catch block
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
}
}
结果:
Author: yytian tian
Author: yytian1 tian1
注意点:
1.这些class必须有一个public而且default的构造函数;必须有get/set方法。
2.Java采用用驼峰式(camel-case)命名法比如 de>firstNamede>,XML的风格为(比如 de>first-namede>)映射为 Java 风格的名称(比如 de>firstNamede>)
3.mapping文件中
<field name="Title" type="java.lang.String"> <bind-xml name="title" node="element" /> </field>Castor 通过调用 de>set[PropertyName]()de> 来使用这个属性名。例如setTitle中的Title【<field name="Title】,对应于xml中的title【<bind-xml name="title"】参考资料:
1、实现 Castor 数据绑定,第 1 部分: 安装和设置 castor
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor1/
2、实现 Castor 数据绑定,第 2 部分: 编组和解组 XML
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor2/
3、实现 Castor 数据绑定,第 3 部分: 模式之间的映射
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor3/
4、实现 Castor 数据绑定,第 4 部分: 把 Java 对象绑定到 SQL 数据库
http://www.ibm.com/developerworks/cn/xml/x-xjavacastor4/index.html
发表评论
-
img usemap属性 中国地图链接
2012-08-24 16:28 1301html的img标签:定义一个图像在网页中引入。它还有个use ... -
在js上获得cookie中指定的值
2012-08-02 10:56 789获得cookie中的"loginName" ... -
在servlet和filter中获取Spring上下文
2012-07-18 11:32 2570在servlet中 方法一:在spring上下文加载到内存后直 ... -
js作用域链的问题
2012-06-03 22:01 1128var name = "The Window&quo ... -
oracle10g导入导出命令
2011-08-09 16:50 878exp和imp一定要加$符号! -
oracle10g安装问题
2011-08-08 18:47 1120版本10g,安装是报错:ora-12638 身份证明检索失败, ... -
浏览器缓存
2011-07-18 17:16 797大家在系统开发中都可能会在js中用到ajax或者dwr,因为I ... -
文档类型 <!DOCTYPE HTML>
2011-07-15 11:00 927写html的时候需要定义文档类型,如果不定义,浏览器在渲染 ... -
log4j学习与应用总结
2011-07-09 17:03 1460最近几天研究log4j,个人的一些总结 严重声明问题 对于减少 ... -
获得一个节点对象的节点类型
2011-06-30 18:16 860html:<div id="aa"& ... -
JSTL 只有c:if 而没有 c:else
2011-06-10 14:00 12629在jsp中 我们可以在 《% %》中写if(){}else{} ... -
JSTL fmt数字日期格式化
2011-05-13 16:07 15079<%@ taglib uri="http:// ... -
el fn函数收藏
2011-05-12 11:28 1141可以截取,用fn函数: <%@ taglib pre ... -
多线程Java Socket编程示例
2011-03-30 14:53 875http://www.blogjava.net/sternin ... -
struts2 type="chain"时result的参数
2011-03-28 15:27 1732Type=“chain”时 result标签的参数可以有下面4 ... -
在eclipse中修改注释模板和myeclipse6.0下art+/不能用的解决办法
2011-03-09 15:45 1115注释模板设置 eclipse-->Window--> ... -
struts2学习笔记之转换器实现语言切换
2011-02-26 11:38 1215第一步,在工程src目录下新建属性文件struts.prope ... -
获得字符串的拼音头和全拼的写法
2011-02-14 10:20 2053public class SpellCache impleme ... -
查找出clazz的声明属性以及父类的声明属性
2010-07-08 15:33 939private List _getFields(Class c ... -
关于自定义标签rtexprvalue属性
2010-07-02 11:56 1198自定义标签时,在<attribute>标签里指定& ...
相关推荐
《Castor学习笔记》 Castor是一个开源的Java库,主要用于在Java对象和XML数据之间进行映射。它提供了一种简单的方法来处理XML数据,将XML文档转换为Java对象,反之亦然,极大地简化了数据交换的工作。在这个学习...
《用Castor处理XML文档》学习笔记 在IT行业中,数据交换和持久化是常见的需求,XML作为一种结构化的数据格式,被广泛用于这些场景。Castor是一个Java库,它提供了强大的XML到Java对象绑定功能,使得处理XML文档变得...
在Castor学习文档中,首先介绍了XML框架,它是Castor的核心组件。文档的1.1.1节到1.1.6节涵盖了Castor XML的数据绑定框架的基本概念,例如框架的引入、使用现有类/对象进行映射、类描述符的使用以及XML上下文的创建...
Castor是一种开源的数据绑定框架,它允许在Java对象和XML之间进行双向转换。这个框架的主要目的是简化数据交换,使得开发者可以轻松地将Java对象序列化为XML,或者将XML反序列化为Java对象。这对于处理XML数据,如...
Castor,全称为Java Object/Relational Mapping (ORM) Project,是一个开源的Java库,它提供了对象关系映射(ORM)的功能,使得开发者可以将Java对象的数据映射到数据库的表结构上,反之亦然。这极大地简化了数据库...
9. **学习资源**:为了深入学习和使用Castor,可以查阅官方文档、在线教程和论坛讨论,以获取示例代码和常见问题解答。 通过以上知识点,我们可以了解到,Castor 1.4版本为XML Schema到Java类的转换提供了一个高效...
Castor是Java开发中的一款强大的数据绑定框架,它允许开发者在Java对象、XML文档、SQL数据库表以及LDAP目录之间进行无缝的数据转换。这个"castor1.3 完整jar包"包含了Castor库的1.3rc1版本,便于开发者直接引入到...
Castor是一个开源Java库,主要用于XML到Java对象的映射(XML Binding)和Java到XML的转换。在Eclipse这样的集成开发环境中,Castor...通过学习和熟练掌握Castor,开发者能够在项目中更高效地管理数据转换和序列化任务。
Castor,全称为Java Content Repository (JCR) API的实现之一,它是一个强大的Java对象到XML数据绑定库,常用于将Java对象序列化为XML,或者反序列化XML到Java对象。在处理XML数据时,根节点是XML文档中至关重要的...
为了充分利用"castor-0.9.9.zip"中的资源,开发者应该首先阅读API文档,了解如何配置映射文件,然后通过示例代码学习如何在项目中集成和使用Castor。同时,关注可能的版本更新和社区支持,以获取最新的功能和修复。
Castor是一个强大的Java库,主要用于将Java对象转换为XML文档,反之亦然。这个"castor-1.3.2.zip"压缩包包含了Castor框架的1.3.2版本,它是一个流行的版本,提供了对Java对象到XML绑定的支持,这对于处理数据交换、...
org.castor.util.IdentityMap org.castor.util.IdentitySet org.exolab.javasource.JEnum org.exolab.javasource.JType org.exolab.castor.util.List org.exolab.javasource.Header org.exolab.javasource.JClass ...
1. 阅读官方文档:Castor的官方文档是学习的起点,它详细介绍了API的使用方法和配置。 2. 分析源码:逐行阅读关键类的源码,了解其实现逻辑。 3. 编写测试:通过编写单元测试,验证对Castor的理解,并发现潜在问题...
Castor是Java社区中一个知名的开源项目,它提供了一个强大的数据绑定框架,使得XML文档与Java对象之间的转换变得更加简单和...通过深入学习和应用这个框架,开发者可以提升项目的数据处理能力,减少手动编码的工作量。
- 提供的文档如"实现 Castor 数据绑定,第 1 部分 安装和设置 Castorr.docx"、"实现 Castor 数据绑定,第 2 部分 编组和解组 XML.docx"等,详细阐述了Castor的安装、配置和使用步骤,是学习和实践的宝贵资料。...
java -classpath D:\xsd/castor-1.2-anttasks.jar;D:\xsd/castor-1.2-codegen.jar;D:\xsd/commons-logging-1.1.jar;D:\xsd/castor-1.2-ddlgen.jar;D:\xsd/castor-1.2-jdo.jar;D:\xsd/castor-1.2-xml-schema.jar;D:\...
castor简介 castor是一种将java对象和XML自动绑定的开源软件。它可以在java对象、XML文本、SQL数据表以及LDAP目录之间绑定。Castor几乎是JAXB的替代品。Castor是ExoLab Group下面的一个开放源代码的项目,它主要实现...
castor-1.2.jar castor-1.2-anttasks.jar castor-1.2-codegen.jar castor-1.2-ddlgen.jar castor-1.2-jdo.jar castor-1.2-xml-schema.jar castor-1.2-xml.jar
Castor是一个开源的数据绑定框架,它允许Java开发者在Java对象和XML之间进行无缝转换。这个强大的工具能够将复杂的Java对象模型映射到XML文档,同时也能够将XML数据解析回等效的Java对象,极大地简化了Java应用中的...
Unmarshall与Marshall使用的castor-xml-1.3.2.jar包