`
Aga
  • 浏览: 217713 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论

XMLBean例子一则

阅读更多
完全是xmlbean的quickstart
下面是一个xsd
<xs:schema
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:po="http://openuri.org/easypo"
    targetNamespace="http://openuri.org/easypo"
    elementFormDefault="qualified">
    <xs:element name="purchase-order">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="customer" type="po:customer"/>
                <xs:element name="date" type="xs:dateTime"/>
                <xs:element name="line-item" type="po:line-item" minOccurs="0" maxOccurs="unbounded"/>
                <xs:element name="shipper" type="po:shipper" minOccurs="0" maxOccurs="1"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
    <xs:complexType name="customer">
        <xs:sequence>
            <xs:element name="name" type="xs:string"/>
            <xs:element name="address" type="xs:string"/>
        </xs:sequence>
        <xs:attribute name="age" type="xs:int"/>
        <xs:attribute name="moo" type="xs:int" default="100"/>
        <xs:attribute name="poo" type="xs:int" fixed="200"/>
    </xs:complexType>
    <xs:complexType name="line-item">
        <xs:sequence>
            <xs:element name="description" type="xs:string"/>
            <xs:element name="per-unit-ounces" type="xs:decimal"/>
            <xs:element name="price" type="xs:decimal"/>
            <xs:element name="quantity" type="xs:integer"/>
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="shipper">
        <xs:sequence>
            <xs:element name="name" type="xs:string"/>
            <xs:element name="per-ounce-rate" type="xs:decimal"/>
        </xs:sequence>
    </xs:complexType>
</xs:schema>

调用例子
package com.cxz.xmlbean;

import java.io.File;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.Collator;
import java.text.RuleBasedCollator;
import java.util.Locale;

import org.apache.xmlbeans.XmlCursor;
import org.apache.xmlbeans.XmlException;
import org.openuri.easypo.*;

public class POUpdater {
//	public static void main(String[] args) {
//		File poXmlFile = new File(args[0]);
//		String updatedPoXml = addLineItem(poXmlFile, args[1], args[2], args[3],
//				args[4]);
//		System.out.println(updatedPoXml);
//	}

	public static void main(String[] args) {
		File poXmlFile = new File(args[0]);
		// String updatedPoXml = addLineItem(poXmlFile, args[1], args[2],
		//     args[3], args[4]);
		String updatedPoXml = addLineItemWithCursor(poXmlFile, args[1],
				args[2], args[3], args[4]);
		System.out.println(updatedPoXml);
	}

	private static String addLineItemWithCursor(File purchaseOrder,
			String itemDescription, String perUnitOunces, String itemPrice,
			String itemQuantity) {
		PurchaseOrderDocument poDoc = null;
		try {
			poDoc = PurchaseOrderDocument.Factory.parse(purchaseOrder);
		} catch (XmlException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}

		PurchaseOrderDocument.PurchaseOrder po = poDoc.getPurchaseOrder();

		// Set up the collator for alphabetizing.
		RuleBasedCollator collator = (RuleBasedCollator) Collator
				.getInstance(new Locale("en", "US", ""));
		XmlCursor cursor = po.newCursor();

		// Get the document's URI so you can use it to insert.
		String namespaceUri = cursor.namespaceForPrefix("");

		// Get the array of <line-item> elements.
		LineItem[] lineItems = po.getLineItemArray();

		// Loop through the element array to discover where to insert the new one.
		for (int i = 0; i < lineItems.length; i++) {
			LineItem lineItem = lineItems[i];

			// Find out if the new line item's description belongs before the
			// current line item's.
			int comparison = collator.compare(itemDescription, lineItem
					.getDescription());

			// If the comparison returns -1, then insert the new line item (and
			// its children) before the current one.
			if (comparison < 0) {
				cursor = lineItem.newCursor();

				// Begin the new <line-item> element.
				cursor.beginElement("line-item", namespaceUri);

				// Begin the new <description> element and insert its text value.
				cursor.beginElement("description", namespaceUri);
				cursor.insertChars(itemDescription);

				// Move on and do the same for the other elements.
				cursor.toNextToken();
				cursor.beginElement("per-unit-ounces", namespaceUri);
				cursor.insertChars(perUnitOunces);
				cursor.toNextToken();
				cursor.beginElement("prices", namespaceUri);
				cursor.insertChars(itemPrice);
				cursor.toNextToken();
				cursor.beginElement("quantity", namespaceUri);
				cursor.insertChars(itemQuantity);
				break;
			}
		}
		// Speed the cursor's garbage collection and return the updated XML.
		cursor.dispose();
		return poDoc.toString();
	}

	private static String addLineItem(File purchaseOrder,
			String itemDescription, String perUnitOuncesString,
			String itemPriceString, String itemQuantityString) {
		PurchaseOrderDocument poDoc = null;
		try {
			// Bind the incoming XML to an XMLBeans type.
			poDoc = PurchaseOrderDocument.Factory.parse(purchaseOrder);
		} catch (XmlException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}

		// Convert incoming data to types that can be used in accessors.
		BigDecimal perUnitOunces = new BigDecimal(perUnitOuncesString);
		BigDecimal itemPrice = new BigDecimal(itemPriceString);
		BigInteger itemQuantity = new BigInteger(itemQuantityString);

		// Add the new <line-item> element.
		LineItem newItem = poDoc.getPurchaseOrder().addNewLineItem();
		newItem.setDescription(itemDescription);
		newItem.setPerUnitOunces(perUnitOunces);
		newItem.setPrice(itemPrice);
		newItem.setQuantity(itemQuantity);

		return poDoc.toString();
	}
}

  • XMLBean.rar (2.2 MB)
  • 描述: 例子,源代码
  • 下载次数: 1086
分享到:
评论

相关推荐

    xmlbean&xmlstream

    在"TestXml2java_xmlbean"这个例子中,我们将看到如何使用XMLBean将XML文档转换为Java对象。首先,我们需要一个XML Schema文件来定义XML结构,然后使用XMLBean的xjc工具生成对应的Java类。接着,在Java代码中,我们...

    ejb 消息驱动Bean例子

    综上所述,ejb消息驱动Bean的例子展示了如何利用Java EE平台处理异步消息,提供可靠的、解耦的系统组件。通过配置和编程,我们可以实现对Queue和Topic的有效监听与处理,提升企业级应用的性能和稳定性。

    bean2xml.zip

    在我们的例子中,"bean2xml.zip"文件包含了实现这一功能的相关代码。解压后,我们可以看到一个名为"bean2xml"的文件,这可能是Java源代码或者测试类,用于演示如何使用XStream进行转换。 要使用XStream,首先需要...

    Struts+Spring+iBATIS做的XML文件操作例子

    `userMapper` bean则是一个可以注入到业务逻辑层的DAO(数据访问对象),通过它可以直接执行XML映射文件中的SQL语句。 Struts则负责接收用户请求并调用Spring管理的业务层服务。例如,当用户请求查看特定用户信息时...

    Converter between XML and Java Bean

    XML是一种用于存储和传输结构化数据的标记语言,而Java Bean是Java编程中的一种组件模型,它代表了对象的封装,通常用于构建可重用的、具有特定属性和方法的对象。"Converter between XML and Java Bean"的主题关注...

    xml连接数据库例子

    在IT领域,XML(Extensible Markup Language)是一种用于存储和传输数据的标记语言,它具有结构化和易于解析的特点。在上述例子中,XML文件被用来存储数据库连接的配置信息,如服务器地址、端口、数据库名、用户名和...

    java+xml联合编程简单例子

    Java是一种强类型、面向对象的编程语言,而XML(Extensible Markup Language)则是一种用于存储和传输数据的标记语言。两者结合,可以实现数据的灵活存储、解析和绑定,使得程序设计更加高效和可维护。 这个“java+...

    jsp+mysql+bean实现登录的小例子

    在这个例子中,Bean可能包含一个或多个属性(如商品ID、名称等)以及对应的getter和setter方法。Bean还可能包含操作数据库的方法,如连接数据库、执行SQL语句等。通过在JSP中使用`jsp:useBean`标签,可以将Bean实例...

    JAXBUtil使用JAXB进行xml和bean互转

    首先,我们来看`ReqMsBean.java`,这是一个简单的Java Bean定义,它代表了XML文档中的一个节点。在JAXB中,每个Java类都对应XML文档中的一个元素,类的属性则对应元素的属性或者子元素。例如,如果我们有一个如下的...

    XMLDemo2学习研究例子.rar

    "XMLDemo2学习研究例子.rar"是一个压缩包,包含了关于XML的实践应用示例,可能是用于教学或自我学习的目的。 在Web开发中,"web.xml"是一个特别重要的文件,它被称为Servlet配置文件,是Java Web应用程序的部署描述...

    Java EJB中有、无状态SessionBean的两个例子.7z

    Java企业版(Java EE)是用于构建分布式、多层企业应用程序的框架,它包含了许多组件,其中Session Bean是核心的组件之一。Session Bean是Java EE中的一个服务组件,用于封装业务逻辑,为客户端提供服务。根据其设计...

    spring IOC反射装载bean

    在Spring-Demo中,我们可能会看到一个实际的例子,包括`beans.xml`配置文件,一个或多个Java类,以及如何通过Spring容器启动并管理这些Bean。这个Demo有助于理解Spring如何通过反射机制加载和管理Bean,以及如何通过...

    Spring项目bean实例化代码

    **静态工厂方法实例化**则涉及到使用类的静态方法来创建Bean。在配置中,我们需要提供`factory-bean`(工厂Bean的ID)和`factory-method`(工厂方法名)。例如: ```xml &lt;bean id="exampleBean" factory-bean=...

    Java EJB中有、无状态SessionBean的两个例子

    本篇将详细讨论有状态和无状态SessionBean的区别,并通过两个实际的例子来阐述它们的工作机制。 一、有状态SessionBean(Stateful Session Bean) 有状态SessionBean,顾名思义,能够保持与客户端会话的状态信息。...

    SSM整合的例子

    它提供了一个统一的配置方式,可以使用XML或注解来定义bean的生命周期和行为。Spring MVC是Spring框架的一部分,专门用于处理Web请求,它通过DispatcherServlet接收请求,然后分发到相应的控制器(Controller)进行...

    SSH整合例子(SSH例子)

    在例子中,Spring会配置数据库连接、事务管理以及服务层和DAO层的bean,通过XML配置文件或注解进行声明。 Struts作为MVC框架,负责处理HTTP请求,解析用户输入,并调用业务逻辑。它通过Action类与视图和模型进行...

    sping applicationcontext中的一些例子demo

    例如,一个简单的`UserService`类,通过`@Service`注解标记为Spring管理的Bean,同时,它可能依赖于其他的Bean,如`UserService`需要`UserDao`来完成数据库操作,这时可以通过`@Autowired`注解实现自动装配。...

Global site tag (gtag.js) - Google Analytics