java.lang.Object
org.apache.jena.rdfxml.xmlinput.ARP
- All Implemented Interfaces:
ARPConfig
Deprecated.
Direct access to the RDF/XML parser is planned for removal. Please contact the Jena development community for details.
Another RDF Parser.
To load an RDF file:
- Create an ARP.
- Set its handlers, by calling the
getHandlers()
method, and then. - Setting the statement handler.
- Optionally setting the other handlers.
- Call a load method.
Xerces is used for parsing the XML.
The SAXEvents generated by Xerces are then
analysed as RDF by ARP.
Errors may occur
in either the XML or the RDF part, see
ARPHandlers.setErrorHandler(org.xml.sax.ErrorHandler)
for details
of how to distinguish between them.
For very large files, ARP does not use any additional
memory except when either the ExtendedHandler.discardNodesWithNodeID()
returns false or when the AResource.setUserData(java.lang.Object)
method has been
used. In these cases ARP needs to remember the rdf:nodeID
usage through the file life time.
See ARP documentation for more information.
Includes contributions from Simon Raboczi and Andrew Newman-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.The handlers used during parsing.Deprecated.When parsing a file, this returns a Locator giving the position of the last XML event processed by ARP.Deprecated.The options used during parsing.void
load
(InputStream in) Deprecated.Load RDF/XML from an InputStream, leaving relative URIs as relative.void
load
(InputStream in, String xmlBase) Deprecated.Load RDF/XML from an InputStream.void
Deprecated.Load RDF/XML from a Reader, leaving relative URIs as relative.void
Deprecated.Load RDF/XML from a Reader.void
setHandlersWith
(ARPHandlers handlers) Deprecated.Copies the handlers from the argument to be used by this instance.void
setOptionsWith
(ARPOptions opts) Deprecated.Copies the options from the argument to be used by this instance.
-
Constructor Details
-
ARP
public ARP()Deprecated.Creates a new RDF Parser. Can parse one file at a time.
-
-
Method Details
-
getLocator
Deprecated.When parsing a file, this returns a Locator giving the position of the last XML event processed by ARP. This may return null or misleading results before any tokens have been processed.- Returns:
- Locator
-
load
Deprecated.Load RDF/XML from a Reader.- Parameters:
in
- The input XML document.xmlBase
- The base URI for the document.- Throws:
SAXException
- More serious error during XML or RDF processing; or thrown from the ErrorHandler.IOException
- Occurring during XML processing.
-
load
Deprecated.Load RDF/XML from an InputStream.- Parameters:
in
- The input XML document.xmlBase
- The base URI for the document.- Throws:
SAXException
- More serious error during XML or RDF processing; or thrown from the ErrorHandler.IOException
- Occurring during XML processing.
-
load
Deprecated.Load RDF/XML from an InputStream, leaving relative URIs as relative.- Parameters:
in
- The input XML document.- Throws:
SAXException
- More serious error during XML or RDF processing; or thrown from the ErrorHandler.IOException
- Occurring during XML processing.
-
load
Deprecated.Load RDF/XML from a Reader, leaving relative URIs as relative.- Parameters:
in
- The input XML document.- Throws:
SAXException
- More serious error during XML or RDF processing; or thrown from the ErrorHandler.IOException
- Occurring during XML processing.
-
getHandlers
Deprecated.The handlers used during parsing. The handlers can be changed by calling this method and then using theset..Handler
methods inARPHandlers
. The handlers can be copied onto another ARP instance using thesetHandlersWith(org.apache.jena.rdfxml.xmlinput.ARPHandlers)
method.- Specified by:
getHandlers
in interfaceARPConfig
- Returns:
- The handlers used during parsing.
- See Also:
-
setHandlersWith
Deprecated.Copies the handlers from the argument to be used by this instance. To make further modifications it is necessary to callgetHandlers()
to retrieve this instance's copy of the handler information.- Specified by:
setHandlersWith
in interfaceARPConfig
- Parameters:
handlers
- The new values to use.
-
getOptions
Deprecated.The options used during parsing. The options can be changed by calling this method and then using theset..
methods inARPOptions
. The options can be copied onto another ARP instance using thesetOptionsWith(org.apache.jena.rdfxml.xmlinput.ARPOptions)
method.- Specified by:
getOptions
in interfaceARPConfig
- Returns:
- The handlers used during parsing.
- See Also:
-
setOptionsWith
Deprecated.Copies the options from the argument to be used by this instance. To make further modifications it is necessary to callgetOptions()
to retrieve this instance's copy of the options.- Specified by:
setOptionsWith
in interfaceARPConfig
- Parameters:
opts
- The new values to use.
-