Package org.vietspider.serialize

Examples of org.vietspider.serialize.Bean2XML


public class Object2XMLEx {
 
  public static void main(String[] args) throws Exception {
    Student student = new Student("123", "Nguyen Van A");
   
    Bean2XML bean2XML = Bean2XML.getInstance();
    XMLDocument document = bean2XML.toXMLDocument(student);
   
    String text = document.getTextValue();
    System.out.println(text);
   
   
View Full Code Here

TOP

Related Classes of org.vietspider.serialize.Bean2XML

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.