public class StAXUtils extends Object
This class defines a set of methods to get XMLStreamReader
and XMLStreamWriter
instances. This class caches the corresponding factories (XMLInputFactory
and XMLOutputFactory
objects) by classloader (default) or as singletons.
The behavior can be changed using setFactoryPerClassLoader(boolean)
.
Default properties for these factories can be specified using XMLInputFactory.properties and XMLOutputFactory.properties files. When a new factory is instantiated, this class will attempt to load the corresponding file using the context classloader. This class supports properties with boolean, integer and string values. Both standard StAX properties and implementation specific properties can be specified. This feature should be used with care since changing some properties to non default values will break Axiom. Good candidates for XMLInputFactory.properties are:
Good candidates for XMLOutputFactory.properties are:
Constructor and Description |
---|
StAXUtils() |
public static javax.xml.stream.XMLInputFactory getXMLInputFactory()
XMLInputFactory
instance using the default
configuration and cache policy (i.e. one instance per class loader).XMLInputFactory
instance.public static javax.xml.stream.XMLInputFactory getXMLInputFactory(StAXParserConfiguration configuration)
XMLInputFactory
instance using the specified
configuration and the default cache policy.configuration
- the configuration applied to the requested factoryXMLInputFactory
instance.public static javax.xml.stream.XMLInputFactory getXMLInputFactory(boolean factoryPerClassLoaderPolicy)
XMLInputFactory
instance using the default
configuration and the specified cache policy.factoryPerClassLoaderPolicy
- the cache policy; see
getXMLInputFactory(StAXParserConfiguration, boolean)
for more detailsXMLInputFactory
instance.public static javax.xml.stream.XMLInputFactory getXMLInputFactory(StAXParserConfiguration configuration, boolean factoryPerClassLoaderPolicy)
XMLInputFactory
instance using the specified
configuration and cache policy.configuration
- the configuration applied to the requested factoryfactoryPerClassLoaderPolicy
- If set to true
, the factory cached for the
current class loader will be returned. If set to
false
, the singleton factory (instantiated using
the class loader that loaded StAXUtils
) will be
returned.XMLInputFactory
instance.public static void releaseXMLInputFactory(javax.xml.stream.XMLInputFactory factory)
factory
- An XMLInputFactory instance that is available for reusepublic static javax.xml.stream.XMLStreamReader createXMLStreamReader(InputStream in, String encoding) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamReader createXMLStreamReader(StAXParserConfiguration configuration, InputStream in, String encoding) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamReader createXMLStreamReader(InputStream in) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamReader createXMLStreamReader(StAXParserConfiguration configuration, InputStream in) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamReader createXMLStreamReader(Reader in) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamReader createXMLStreamReader(StAXParserConfiguration configuration, Reader in) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLOutputFactory getXMLOutputFactory()
XMLOutputFactory
instance using the default
configuration and cache policy (i.e. one instance per class loader).XMLOutputFactory
instance.public static javax.xml.stream.XMLOutputFactory getXMLOutputFactory(StAXWriterConfiguration configuration)
XMLOutputFactory
instance using the specified
configuration and the default cache policy.configuration
- the configuration applied to the requested factoryXMLOutputFactory
instance.public static javax.xml.stream.XMLOutputFactory getXMLOutputFactory(boolean factoryPerClassLoaderPolicy)
XMLOutputFactory
instance using the default
configuration and the specified cache policy.factoryPerClassLoaderPolicy
- the cache policy; see
getXMLOutputFactory(StAXWriterConfiguration, boolean)
for more detailsXMLOutputFactory
instance.public static javax.xml.stream.XMLOutputFactory getXMLOutputFactory(StAXWriterConfiguration configuration, boolean factoryPerClassLoaderPolicy)
XMLOutputFactory
instance using the specified
configuration and cache policy.configuration
- the configuration applied to the requested factoryfactoryPerClassLoaderPolicy
- If set to true
, the factory cached for the
current class loader will be returned. If set to
false
, the singleton factory (instantiated using
the class loader that loaded StAXUtils
) will be
returned.XMLOutputFactory
instance.public static void setFactoryPerClassLoader(boolean value)
value
- (if false, then one singleton...if true...then singleton per class loader
(default is true)public static void releaseXMLOutputFactory(javax.xml.stream.XMLOutputFactory factory)
factory
- An XMLOutputFactory instance that is available for reuse.public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(OutputStream out) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(StAXWriterConfiguration configuration, OutputStream out) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(StAXWriterConfiguration configuration, OutputStream out, String encoding) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(Writer out) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(StAXWriterConfiguration configuration, Writer out) throws javax.xml.stream.XMLStreamException
public static void reset()
public static javax.xml.stream.XMLStreamReader createNetworkDetachedXMLStreamReader(InputStream in, String encoding) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLInputFactory getNetworkDetachedXMLInputFactory()
public static javax.xml.stream.XMLStreamReader createNetworkDetachedXMLStreamReader(InputStream in) throws javax.xml.stream.XMLStreamException
public static javax.xml.stream.XMLStreamReader createNetworkDetachedXMLStreamReader(Reader in) throws javax.xml.stream.XMLStreamException
createXMLStreamReader(StAXParserConfiguration, Reader)
with StAXParserConfiguration.STANDALONE
public static String getEventTypeString(int event)
XMLEventUtils.getEventTypeString(int)
insteadCopyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.