简单的jaxb : JAXB数据绑定 « JDK-6 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » JDK-6 » JAXB数据绑定屏幕截图 
简单的jaxb

/*
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (the "License").  You may not use this file except
 * in compliance with the License.
 
 * You can obtain a copy of the license at
 * https://jwsdp.dev.java.net/CDDLv1.0.html
 * See the License for the specific language governing
 * permissions and limitations under the License.
 
 * When distributing Covered Code, include this CDDL
 * HEADER in each file and include the License file at
 * https://jwsdp.dev.java.net/CDDLv1.0.html  If applicable,
 * add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your
 * own identifying information: Portions Copyright [yyyy]
 * [name of copyright owner]
 */
package webservices.simple_jaxb;
 
import java.io.FileInputStream;
import java.io.File;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;

// import java content classes generated by binding compiler
import primer.po.*;

/*
 * $Id: UnmarshalRead.java,v 1.2 2006/04/01 20:21:48 msreddy Exp $
 *
 * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
 
 * This software is the proprietary information of Sun Microsystems, Inc.  
 * Use is subject to license terms.
 
 */
 
public class UnmarshalRead {
    
    // This sample application demonstrates how to unmarshal an instance
    // document into a Java content tree and access data contained within it.
    
    public static void mainString[] args ) {
        try {
            // create a JAXBContext capable of handling classes generated into
            // the primer.po package
            JAXBContext jc = JAXBContext.newInstance"primer.po" );
            
            // create an Unmarshaller
            Unmarshaller u = jc.createUnmarshaller();
            
            // unmarshal a po instance document into a tree of Java content
            // objects composed of classes from the primer.po package.
            JAXBElement<?> poElement = (JAXBElement<?>)u.unmarshalnew File"po.xml" ) );
            PurchaseOrderType po = (PurchaseOrderType)poElement.getValue();
            
            // examine some of the content in the PurchaseOrder
            System.out.println"Ship the following items to: " );
            
            // display the shipping address
            USAddress address = po.getShipTo();
            displayAddressaddress );
            
            // display the items
            Items items = po.getItems();
            displayItemsitems );
            
        catchJAXBException je ) {
            je.printStackTrace();
        }
    }
    
    public static void displayAddressUSAddress address ) {
        // display the address
        System.out.println"\t" + address.getName() );
  name = address.getName();
        System.out.println"\t" + address.getStreet() )
        System.out.println"\t" + address.getCity() +
                            ", " + address.getState() 
                            " "  + address.getZip() )
        System.out.println"\t" + address.getCountry() "\n")
    }
    
    public static void displayItemsItems items ) {
        // the items object contains a List of primer.po.ItemType objects
        List itemTypeList = items.getItem();

                
        // iterate over List
        forIterator iter = itemTypeList.iterator(); iter.hasNext()) {
            Items.Item item = (Items.Item)iter.next()
            System.out.println"\t" + item.getQuantity() +
                                " copies of \"" + item.getProductName() +
                                "\"" )
        }
    }

    public static String getName() {
  if (name == null) {
    main(null);
  }
  return name;
    }
   
    private static String name;
}
           
       
simple-jaxb.zip( 8 k)
Related examples in the same category
1. 整理Java对象到XML ,并输出到控制台
2. 整理Java对象到一个文件
3. JAXB演示
4. 从XML模式到Java通用的清单
5. JAXB XML模式和Java枚举
6. Unmarshall From XML using JAXB
7. 设定的目标名称空间,成为Java程序包名称
8. 从XML模式(结构描述)生成Java源
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.