public interface Unmarshaller
从文件解组:
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); Object o = u.unmarshal( new File( "nosferatu.xml" ) );
从InputStream解组:
InputStream is = new FileInputStream( "nosferatu.xml" ); JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); Object o = u.unmarshal( is );
从网址解组:
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); URL url = new URL( "http://beaker.east/nosferatu.xml" ); Object o = u.unmarshal( url );
使用javax.xml.transform.stream.StreamSource从StringBuffer 解组 :
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); StringBuffer xmlStr = new StringBuffer( "<?xml version="1.0"?>..." ); Object o = u.unmarshal( new StreamSource( new StringReader( xmlStr.toString() ) ) );
从org.w3c.dom.Node解组 :
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); dbf.setNamespaceAware(true); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(new File( "nosferatu.xml")); Object o = u.unmarshal( doc );
使用客户端从javax.xml.transform.sax.SAXSource解组指定的验证SAX2.0解析器:
// configure a validating SAX2.0 parser (Xerces2) static final String JAXP_SCHEMA_LANGUAGE = "http://java.sun.com/xml/jaxp/properties/schemaLanguage"; static final String JAXP_SCHEMA_LOCATION = "http://java.sun.com/xml/jaxp/properties/schemaSource"; static final String W3C_XML_SCHEMA = "http://www.w3.org/2001/XMLSchema"; System.setProperty( "javax.xml.parsers.SAXParserFactory", "org.apache.xerces.jaxp.SAXParserFactoryImpl" ); SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); spf.setValidating(true); SAXParser saxParser = spf.newSAXParser(); try { saxParser.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA); saxParser.setProperty(JAXP_SCHEMA_LOCATION, "http://...."); } catch (SAXNotRecognizedException x) { // exception handling omitted } XMLReader xmlReader = saxParser.getXMLReader(); SAXSource source = new SAXSource( xmlReader, new InputSource( "http://..." ) ); // Setup JAXB to unmarshal JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); ValidationEventCollector vec = new ValidationEventCollector(); u.setEventHandler( vec ); // turn off the JAXB provider's default validation mechanism to // avoid duplicate validation u.setValidating( false ) // unmarshal Object o = u.unmarshal( source ); // check for events if( vec.hasEvents() ) { // iterate over events }
从StAX XMLStreamReader解集:
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); javax.xml.stream.XMLStreamReader xmlStreamReader = javax.xml.stream.XMLInputFactory().newInstance().createXMLStreamReader( ... ); Object o = u.unmarshal( xmlStreamReader );
从StAX XMLEventReader解组:
JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); javax.xml.stream.XMLEventReader xmlEventReader = javax.xml.stream.XMLInputFactory().newInstance().createXMLEventReader( ... ); Object o = u.unmarshal( xmlEventReader );
Unmarshalling can deserialize XML data that represents either an entire XML document or a subtree of an XML document. Typically, it is sufficient to use the unmarshalling methods described by Unmarshal root element that is declared globally. These unmarshal methods utilizeJAXBContext
's mapping of global XML element declarations and type definitions to JAXB mapped classes to initiate the unmarshalling of the root element of XML data. When theJAXBContext
's mappings are not sufficient to unmarshal the root element of XML data, the application can assist the unmarshalling process by using the unmarshal by declaredType methods. These methods are useful for unmarshalling XML data where the root element corresponds to a local element declaration in the schema.
An unmarshal method never returns null. If the unmarshal process is unable to unmarshal the root of XML content to a JAXB mapped object, a fatal error is reported that terminates processing by throwing JAXBException.
解组 名为全局声明的根元素
The unmarshal methods that do not have an declaredType parameter useJAXBContext
to unmarshal the root element of an XML data. TheJAXBContext
instance is the one that was used to create this Unmarshaller. TheJAXBContext
instance maintains a mapping of globally declared XML element and type definition names to JAXB mapped classes. The unmarshal method checks ifJAXBContext
has a mapping from the root element's XML name and/or @xsi:type to a JAXB mapped class. If it does, it umarshalls the XML data using the appropriate JAXB mapped class. Note that when the root element name is unknown and the root element has an @xsi:type, the XML data is unmarshalled using that JAXB mapped class as the value of aJAXBElement
. When theJAXBContext
object does not have a mapping for the root element's name nor its @xsi:type, if it exists, then the unmarshal operation will abort immediately by throwing aUnmarshalException
. This exception scenario can be worked around by using the unmarshal by declaredType methods described in the next subsection.
The unmarshal methods with adeclaredType
parameter enable an application to deserialize a root element of XML data, even when there is no mapping inJAXBContext
of the root element's XML name. The unmarshaller unmarshals the root element using the application provided mapping specified as the declaredType parameter. Note that even when the root element's element name is mapped byJAXBContext
, thedeclaredType
parameter overrides that mapping for deserializing the root element when using these unmarshal methods. Additionally, when the root element of XML data has an xsi:type attribute and that attribute's value references a type definition that is mapped to a JAXB mapped class byJAXBContext
, that the root element's xsi:type attribute takes precedence over the unmarshal methods declaredType parameter. These methods always return a JAXBElement<declaredType> instance. The table below shows how the properties of the returned JAXBElement instance are set.
Unmarshal By Declared Type returned JAXBElement JAXBElement Property Value name xml element name
value instanceof declaredType
declaredType unmarshal method declaredType
parameterscope null
(actual scope is unknown)
以下是一个例子unmarshal by declaredType method 。
通过declaredType从一个org.w3c.dom.Node解组 :
Schema fragment for example <xs:schema> <xs:complexType name="FooType">...<\xs:complexType> <!-- global element declaration "PurchaseOrder" --> <xs:element name="PurchaseOrder"> <xs:complexType> <xs:sequence> <!-- local element declaration "foo" --> <xs:element name="foo" type="FooType"/> ... </xs:sequence> </xs:complexType> </xs:element> </xs:schema> JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" ); Unmarshaller u = jc.createUnmarshaller(); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); dbf.setNamespaceAware(true); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(new File( "nosferatu.xml")); Element fooSubtree = ...; // traverse DOM till reach xml element foo, constrained by a // local element declaration in schema. // FooType is the JAXB mapping of the type of local element declaration foo. JAXBElement<FooType> foo = u.unmarshal( fooSubtree, FooType.class);
支持符合SAX2.0标准的解析器
A client application has the ability to select the SAX2.0 compliant parser of their choice. If a SAX parser is not selected, then the JAXB Provider's default parser will be used. Even though the JAXB Provider's default parser is not required to be SAX2.0 compliant, all providers are required to allow a client application to specify their own SAX2.0 parser. Some providers may require the client application to specify the SAX2.0 parser at schema compile time. See unmarshal(Source)
for more detail.
验证和成型
A client application can enable or disable JAXP 1.3 validation mechanism via the setSchema(javax.xml.validation.Schema) API. Sophisticated clients can specify their own validating SAX 2.0 compliant parser and bypass the JAXP 1.3 validation mechanism using the
unmarshal(Source)
API.Since unmarshalling invalid XML content is defined in JAXB 2.0, the Unmarshaller default validation event handler was made more lenient than in JAXB 1.0. When schema-derived code generated by JAXB 1.0 binding compiler is registered with
JAXBContext
, the default unmarshal validation handler isDefaultValidationEventHandler
and it terminates the marshal operation after encountering either a fatal error or an error. For a JAXB 2.0 client application, there is no explicitly defined default validation handler and the default event handling only terminates the unmarshal operation after encountering a fatal error.
There currently are not any properties required to be supported by all JAXB Providers on Unmarshaller. However, some providers may support their own set of provider specific properties.
TheUnmarshaller
provides two styles of callback mechanisms that allow application specific processing during key points in the unmarshalling process. In 'class defined' event callbacks, application specific code placed in JAXB mapped classes is triggered during unmarshalling. 'External listeners' allow for centralized processing of unmarshal events in one callback method rather than by type event callbacks.'Class defined' event callback methods allow any JAXB mapped class to specify its own specific callback methods by defining methods with the following method signature:
The class defined callback methods should be used when the callback method requires access to non-public methods and/or fields of the class.// This method is called immediately after the object is created and before the unmarshalling of this // object begins. The callback provides an opportunity to initialize JavaBean properties prior to unmarshalling. void beforeUnmarshal(Unmarshaller, Object parent); //This method is called after all the properties (except IDREF) are unmarshalled for this object, //but before this object is set to the parent object. void afterUnmarshal(Unmarshaller, Object parent);The external listener callback mechanism enables the registration of a
Unmarshaller.Listener
instance with ansetListener(Listener)
. The external listener receives all callback events, allowing for more centralized processing than per class defined callback methods. The external listener receives events when unmarshalling proces is marshalling to a JAXB element or to JAXB mapped class.The 'class defined' and external listener event callback methods are independent of each other, both can be called for one event. The invocation ordering when both listener callback methods exist is defined in
Unmarshaller.Listener.beforeUnmarshal(Object, Object)
andUnmarshaller.Listener.afterUnmarshal(Object, Object)
.An event callback method throwing an exception terminates the current unmarshal process.
JAXBContext
, Marshaller
, Validator
Modifier and Type | Interface and Description |
---|---|
static class |
Unmarshaller.Listener
注册这个类的一个实现的实例与 Unmarshaller 从外部侦听解组事件。
|
Modifier and Type | Method and Description |
---|---|
<A extends XmlAdapter> |
getAdapter(类<A> type)
获取与指定类型相关联的适配器。
|
AttachmentUnmarshaller |
getAttachmentUnmarshaller() |
ValidationEventHandler |
getEventHandler()
返回当前事件处理程序或默认事件处理程序(如果尚未设置)。
|
Unmarshaller.Listener |
getListener()
|
Object |
getProperty(String name)
获取Unmarshaller的底层实现中的
特定属性 。
|
Schema |
getSchema()
获取用于执行解密时间验证的JAXP 1.3 Schema 对象。
|
UnmarshallerHandler |
getUnmarshallerHandler()
获取可以用作XML管道中组件的解组员处理程序对象。
|
boolean |
isValidating()
已弃用
由于JAXB2.0,请参阅
getSchema()
|
<A extends XmlAdapter> |
setAdapter(类<A> type, A adapter)
相关联的配置实例 XmlAdapter 与此unmarshaller。
|
void |
setAdapter(XmlAdapter adapter)
相关联的配置实例 XmlAdapter 与此unmarshaller。
|
void |
setAttachmentUnmarshaller(AttachmentUnmarshaller au)
将解析cid,content-id URI的上下文关联到作为附件传递的二进制数据。
|
void |
setEventHandler(ValidationEventHandler handler)
允许申请注册一个
ValidationEventHandler 。
|
void |
setListener(Unmarshaller.Listener listener)
注册unmarshal事件回调 Unmarshaller.Listener 与这Unmarshaller 。
|
void |
setProperty(String name, Object value)
设置基础实现中的特定属性
Unmarshaller 。
|
void |
setSchema(Schema schema)
指定应用于验证后续解组操作的JAXP 1.3 Schema 对象。
|
void |
setValidating(boolean validating)
已弃用
因为JAXB2.0,请参阅
setSchema(javax.xml.validation.Schema)
|
Object |
unmarshal(File f)
从指定的文件解组XML数据并返回生成的内容树。
|
Object |
unmarshal(InputSource source)
从指定的SAX InputSource解组XML数据并返回结果内容树。
|
Object |
unmarshal(InputStream is)
从指定的InputStream中解组XML数据,并返回生成的内容树。
|
Object |
unmarshal(Node node)
从指定的DOM树中解组全局XML数据,并返回生成的内容树。
|
<T> JAXBElement<T> |
unmarshal(Node node, 类<T> declaredType)
通过JAXB映射
declaredType解组XML数据,并返回生成的内容树。
|
Object |
unmarshal(Reader reader)
从指定的Reader中解组XML数据并返回生成的内容树。
|
Object |
unmarshal(Source source)
从指定的XML Source中解组XML数据并返回生成的内容树。
|
<T> JAXBElement<T> |
unmarshal(Source source, 类<T> declaredType)
通过
declaredType从指定的XML源解组XML数据,并返回生成的内容树。
|
Object |
unmarshal(URL url)
从指定的URL解组XML数据并返回生成的内容树。
|
Object |
unmarshal(XMLEventReader reader)
从指定的解析器解组XML数据并返回生成的内容树。
|
<T> JAXBElement<T> |
unmarshal(XMLEventReader reader, 类<T> declaredType)
将根元素解组到JAXB映射
declaredType并返回生成的内容树。
|
Object |
unmarshal(XMLStreamReader reader)
从指定的解析器解组XML数据并返回生成的内容树。
|
<T> JAXBElement<T> |
unmarshal(XMLStreamReader reader, 类<T> declaredType)
将根元素解组到JAXB映射
declaredType并返回生成的内容树。
|
Object unmarshal(File f) throws JAXBException
f
- 从中解开XML数据的文件
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果file参数为null
Object unmarshal(InputStream is) throws JAXBException
is
- 从中解开XML数据的InputStream
JAXBException
- 如果在解组时出现意外的错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果InputStream参数为空
Object unmarshal(Reader reader) throws JAXBException
reader
- 解读XML数据的读者
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果InputStream参数为空
Object unmarshal(URL url) throws JAXBException
url
- 从中解开XML数据的URL
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果URL参数为空
Object unmarshal(InputSource source) throws JAXBException
source
- 解密XML数据的输入源
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果InputSource参数为空
Object unmarshal(Node node) throws JAXBException
node
- 从中解开XML数据的文档/元素。
呼叫者至少必须支持Document和Element。
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果Node参数为空
unmarshal(org.w3c.dom.Node, Class)
<T> JAXBElement<T> unmarshal(Node node, 类<T> declaredType) throws JAXBException
node
- 从中解开XML数据的文档/元素。
呼叫者至少必须支持Document和Element。
declaredType
- 适当的JAXB映射类保存
node的XML数据。
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果任何参数为空
Object unmarshal(Source source) throws JAXBException
实现Unmarshal Global Root Element 。
客户端应用程序可以选择不使用JAXB提供程序提供的默认解析器机制。 任何SAX 2.0兼容解析器可以替代JAXB提供程序的默认机制。 要做到这一点,客户端应用程序必须正确配置SAXSource包含由SAX 2.0解析器提供实现的XMLReader。 如果XMLReader在其上注册了一个org.xml.sax.ErrorHandler ,则将由JAXB提供者替换,以便通过JAXB的ValidationEventHandler机制报告验证错误。 如果SAXSource不包含XMLReader ,则将使用JAXB提供程序的默认解析器机制。
此解析器替换机制也可用于替换JAXB提供者的解组时间验证引擎。 客户端应用程序必须正确配置其SAX 2.0兼容解析器才能执行验证(如上例所示)。 在解组操作期间解析器遇到的任何SAXParserExceptions将由JAXB提供商处理,并转换为JAXB ValidationEvent对象,这些对象将通过Unmarshaller注册的ValidationEventHandler报告回客户端。 注意:指定替代验证SAX 2.0解析器进行解组合并不一定取代JAXB提供程序用于执行按需验证的验证引擎。
客户端应用程序指定在解密期间使用的备用解析器机制的唯一方法是通过unmarshal(SAXSource) API。 所有其他形式的解组方法(文件,URL,节点等)将使用JAXB提供程序的默认解析器和验证器机制。
source
- 解析XML数据的XML源(提供者只需要支持SAXSource,DOMSource和StreamSource)
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果Source参数为null
unmarshal(javax.xml.transform.Source, Class)
<T> JAXBElement<T> unmarshal(Source source, 类<T> declaredType) throws JAXBException
source
- 解析XML数据的XML源(提供者只需要支持SAXSource,DOMSource和StreamSource)
declaredType
- 适当的JAXB映射类保存
source的xml根元素
JAXBException
- 如果在解组时出现意外的错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果任何参数为空
Object unmarshal(XMLStreamReader reader) throws JAXBException
实现Unmarshal Global Root Element 。
该方法假定解析器处于START_DOCUMENT或START_ELEMENT事件。 解组将从此开始事件到相应的结束事件。 如果此方法成功返回,则reader将在结束事件之后指向该令牌。
reader
- 要读取的解析器。
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果
reader参数为空
IllegalStateException
- 如果
reader未指向START_DOCUMENT或START_ELEMENT事件。
unmarshal(javax.xml.stream.XMLStreamReader, Class)
<T> JAXBElement<T> unmarshal(XMLStreamReader reader, 类<T> declaredType) throws JAXBException
该方法实现unmarshal by declaredType 。
该方法假定解析器处于START_DOCUMENT或START_ELEMENT事件。 解组将从此开始事件到相应的结束事件。 如果此方法成功返回,则reader将在结束事件之后指向该令牌。
reader
- 要读取的解析器。
declaredType
- 适当的JAXB映射类保存
reader的START_ELEMENT XML数据。
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果任何参数为空
Object unmarshal(XMLEventReader reader) throws JAXBException
这个方法是一个Unmarshal Global Root method 。
该方法假定解析器处于START_DOCUMENT或START_ELEMENT事件。 解组将从此开始事件到相应的结束事件。 如果此方法成功返回,则reader将在结束事件之后指向令牌。
reader
- 要读取的解析器。
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果
reader参数为空
IllegalStateException
- 如果
reader未指向START_DOCUMENT或START_ELEMENT事件。
unmarshal(javax.xml.stream.XMLEventReader, Class)
<T> JAXBElement<T> unmarshal(XMLEventReader reader, 类<T> declaredType) throws JAXBException
该方法实现unmarshal by declaredType 。
该方法假定解析器处于START_DOCUMENT或START_ELEMENT事件。 解组将从此开始事件到相应的结束事件。 如果此方法成功返回,则reader将在结束事件之后指向该令牌。
reader
- 要读取的解析器。
declaredType
- 适当的JAXB映射类保存
reader的START_ELEMENT XML数据。
JAXBException
- 解组时是否发生意外错误
UnmarshalException
- 如果ValidationEventHandler
从其handleEvent方法返回false,或者Unmarshaller无法执行XML到Java绑定。
见Unmarshalling XML Data
IllegalArgumentException
- 如果任何参数为空
UnmarshallerHandler getUnmarshallerHandler()
JAXB提供程序可以返回相同的处理程序对象,用于此方法的多次调用。 换句话说,这种方法不一定会创建一个新的实例UnmarshallerHandler 。 如果应用程序需要使用多个UnmarshallerHandler ,应该创建多个Unmarshaller 。
UnmarshallerHandler
void setValidating(boolean validating) throws JAXBException
setSchema(javax.xml.validation.Schema)
该方法只能在调用其中一个解组方法之前或之后调用。
此方法仅控制JAXB提供程序的默认解组时间验证机制 - 它对指定自己的验证SAX 2.0兼容解析器的客户端没有影响。 指定自己的解密时间验证机制的客户端可能希望通过此API关闭JAXB提供商的默认验证机制,以避免“双重验证”。
该方法自JAXB 2.0以来已被弃用 - 请使用新的setSchema(javax.xml.validation.Schema)
API。
validating
- 如果Unmarshaller在解组织期间应验证,则为true,否则为false
JAXBException
- 如果在解密时启用或禁用验证时发生错误
UnsupportedOperationException
- 如果在引用JAXB 2.0映射类的JAXBContext创建的Unmarshaller上调用此方法,则可能会抛出
boolean isValidating() throws JAXBException
getSchema()
该API返回JAXB提供程序的默认unmarshal-time验证机制的状态。
该方法自JAXB 2.0以来已被弃用 - 请使用新的getSchema()
API。
JAXBException
- 如果在检索验证标志时发生错误
UnsupportedOperationException
- 如果在引用JAXB 2.0映射类的JAXBContext创建的Unmarshaller上调用此方法,则可能会抛出
void setEventHandler(ValidationEventHandler handler) throws JAXBException
ValidationEventHandler将由JAXB提供者调用,如果在任何解组方法的调用期间遇到任何验证错误。 如果客户端应用程序在调用解密方法之前没有注册ValidationEventHandler ,那么ValidationEvents将由默认事件处理程序处理,该处理程序将在遇到第一个错误或致命错误后终止解组操作。
使用null参数调用此方法将导致Unmarshaller恢复为默认事件处理程序。
handler
- 验证事件处理程序
JAXBException
- 如果在设置事件处理程序时遇到错误
ValidationEventHandler getEventHandler() throws JAXBException
JAXBException
- 如果在获取当前事件处理程序时遇到错误
void setProperty(String name, Object value) throws PropertyException
name
- 要设置的属性的名称。
可以使用常量字段或用户提供的字符串指定此值。
value
- 要设置的属性的值
PropertyException
- 处理给定属性或值时出错
IllegalArgumentException
- 如果name参数为null
Object getProperty(String name) throws PropertyException
name
- 要检索的属性的名称
PropertyException
- 检索给定属性或值属性名称时出现错误
IllegalArgumentException
- 如果name参数为null
void setSchema(Schema schema)
Schema
对象。
将null传递给此方法将禁用验证。
此方法将替代已弃用的setValidating(boolean)
API。
最初此属性设置为null 。
schema
- 用于验证解组操作的模式对象或null以禁用验证
UnsupportedOperationException
- 如果在引用JAXB 1.0映射类的JAXBContext创建的Unmarshaller上调用此方法,则可能会抛出
Schema getSchema()
Schema
对象。
如果在unmarshaller上没有设置Schema,则该方法将返回null,表示将不执行解密时间验证。
此方法提供了已弃用的isValidating()
API以及对Schema对象的访问的替换功能 。 要确定Unmarshaller是否启用了验证,只需将null的返回类型测试:
boolean isValidating = u.getSchema()!=null;
UnsupportedOperationException
- 如果在引用JAXB 1.0映射类的JAXBContext创建的Unmarshaller上调用此方法,则可能会抛出
void setAdapter(XmlAdapter adapter)
XmlAdapter
与此unmarshaller。
这是调用setAdapter(adapter.getClass(),adapter);
的方便方法。
IllegalArgumentException
- 如果适配器参数为空。
UnsupportedOperationException
- 如果
UnsupportedOperationException
调用JAXB 1.0实现。
setAdapter(Class,XmlAdapter)
<A extends XmlAdapter> void setAdapter(类<A> type, A adapter)
XmlAdapter
与此unmarshaller。
每个unmarshaller内部维护一个Map
< 类
, XmlAdapter
>,它使用用于解组类,它们的字段/方法的注解为XmlJavaTypeAdapter
。
此方法允许应用程序使用的一个配置实例XmlAdapter
。 当未给出适配器的实例时,解组器将通过调用其默认构造函数来创建一个。
type
- 适配器的类型。
指定的实例将在XmlJavaTypeAdapter.value()
引用此类型时使用。
adapter
- 要使用的适配器的实例。
如果为空,它将取消注册此类型的当前适配器集。
IllegalArgumentException
- 如果type参数为null。
UnsupportedOperationException
- 如果
UnsupportedOperationException
调用JAXB 1.0实现。
<A extends XmlAdapter> A getAdapter(类<A> type)
setAdapter(javax.xml.bind.annotation.adapters.XmlAdapter)
方法的反向操作。
IllegalArgumentException
- 如果type参数为null。
UnsupportedOperationException
- 如果
UnsupportedOperationException
调用JAXB 1.0实现。
void setAttachmentUnmarshaller(AttachmentUnmarshaller au)
将解析cid,content-id URI的上下文关联到作为附件传递的二进制数据。
即使在解组器执行XOP处理时,也必须支持通过setSchema(Schema)
启用解密时间验证。
IllegalStateException
- 如果在unmarshal操作期间尝试同时调用此方法。
AttachmentUnmarshaller getAttachmentUnmarshaller()
void setListener(Unmarshaller.Listener listener)
注册解组事件回调Unmarshaller.Listener
这个Unmarshaller
。
每个Unmarshaller只有一个监听器。 设置侦听器将替换以前设置的侦听器。 可以通过将侦听器设置为null来取消注册当前侦听器。
listener
- 提供这个Unmarshaller
的解组事件回调
Unmarshaller.Listener getListener()
Unmarshaller.Listener
或null
如果没有监听器已经注册到这个Unmarshaller。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.