- java.lang.Object
-
- java.beans.XMLDecoder
-
- All Implemented Interfaces:
- AutoCloseable
public class XMLDecoder extends Object implements AutoCloseable
TheXMLDecoder
class is used to read XML documents created using theXMLEncoder
and is used just like theObjectInputStream
. For example, one can use the following fragment to read the first object defined in an XML document written by theXMLEncoder
class:XMLDecoder d = new XMLDecoder( new BufferedInputStream( new FileInputStream("Test.xml"))); Object result = d.readObject(); d.close();
For more information you might also want to check out Long Term Persistence of JavaBeans Components: XML Schema, an article in The Swing Connection.
- Since:
- 1.4
- See Also:
XMLEncoder
,ObjectInputStream
-
-
Constructor Summary
Constructors Constructor and Description XMLDecoder(InputSource is)
Creates a new decoder to parse XML archives created by theXMLEncoder
class.XMLDecoder(InputStream in)
Creates a new input stream for reading archives created by theXMLEncoder
class.XMLDecoder(InputStream in, Object owner)
Creates a new input stream for reading archives created by theXMLEncoder
class.XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener)
Creates a new input stream for reading archives created by theXMLEncoder
class.XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener, ClassLoader cl)
Creates a new input stream for reading archives created by theXMLEncoder
class.
-
Method Summary
Methods Modifier and Type Method and Description void
close()
This method closes the input stream associated with this stream.static DefaultHandler
createHandler(Object owner, ExceptionListener el, ClassLoader cl)
Creates a new handler for SAX parser that can be used to parse embedded XML archives created by theXMLEncoder
class.ExceptionListener
getExceptionListener()
Gets the exception handler for this stream.Object
getOwner()
Gets the owner of this decoder.Object
readObject()
Reads the next object from the underlying input stream.void
setExceptionListener(ExceptionListener exceptionListener)
Sets the exception handler for this stream toexceptionListener
.void
setOwner(Object owner)
Sets the owner of this decoder toowner
.
-
-
-
Constructor Detail
-
XMLDecoder
public XMLDecoder(InputStream in)
Creates a new input stream for reading archives created by theXMLEncoder
class.- Parameters:
in
- The underlying stream.- See Also:
XMLEncoder.XMLEncoder(java.io.OutputStream)
-
XMLDecoder
public XMLDecoder(InputStream in, Object owner)
Creates a new input stream for reading archives created by theXMLEncoder
class.- Parameters:
in
- The underlying stream.owner
- The owner of this stream.
-
XMLDecoder
public XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener)
Creates a new input stream for reading archives created by theXMLEncoder
class.- Parameters:
in
- the underlying stream.owner
- the owner of this stream.exceptionListener
- the exception handler for the stream; ifnull
the default exception listener will be used.
-
XMLDecoder
public XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener, ClassLoader cl)
Creates a new input stream for reading archives created by theXMLEncoder
class.- Parameters:
in
- the underlying stream.null
may be passed without error, though the resulting XMLDecoder will be uselessowner
- the owner of this stream.null
is a legal valueexceptionListener
- the exception handler for the stream, ornull
to use the defaultcl
- the class loader used for instantiating objects.null
indicates that the default class loader should be used- Since:
- 1.5
-
XMLDecoder
public XMLDecoder(InputSource is)
Creates a new decoder to parse XML archives created by theXMLEncoder
class. If the input sourceis
isnull
, no exception is thrown and no parsing is performed. This behavior is similar to behavior of other constructors that useInputStream
as a parameter.- Parameters:
is
- the input source to parse- Since:
- 1.7
-
-
Method Detail
-
close
public void close()
This method closes the input stream associated with this stream.- Specified by:
close
in interfaceAutoCloseable
-
setExceptionListener
public void setExceptionListener(ExceptionListener exceptionListener)
Sets the exception handler for this stream toexceptionListener
. The exception handler is notified when this stream catches recoverable exceptions.- Parameters:
exceptionListener
- The exception handler for this stream; ifnull
the default exception listener will be used.- See Also:
getExceptionListener()
-
getExceptionListener
public ExceptionListener getExceptionListener()
Gets the exception handler for this stream.- Returns:
- The exception handler for this stream. Will return the default exception listener if this has not explicitly been set.
- See Also:
setExceptionListener(java.beans.ExceptionListener)
-
readObject
public Object readObject()
Reads the next object from the underlying input stream.- Returns:
- the next object read
- Throws:
ArrayIndexOutOfBoundsException
- if the stream contains no objects (or no more objects)- See Also:
XMLEncoder.writeObject(java.lang.Object)
-
setOwner
public void setOwner(Object owner)
Sets the owner of this decoder toowner
.- Parameters:
owner
- The owner of this decoder.- See Also:
getOwner()
-
getOwner
public Object getOwner()
Gets the owner of this decoder.- Returns:
- The owner of this decoder.
- See Also:
setOwner(java.lang.Object)
-
createHandler
public static DefaultHandler createHandler(Object owner, ExceptionListener el, ClassLoader cl)
Creates a new handler for SAX parser that can be used to parse embedded XML archives created by theXMLEncoder
class. Theowner
should be used if parsed XML document contains the method call within context of the <java> element. Thenull
value may cause illegal parsing in such case. The same problem may occur, if theowner
class does not contain expected method to call. See details here.- Parameters:
owner
- the owner of the default handler that can be used as a value of <java> elementel
- the exception handler for the parser, ornull
to use the default exception handlercl
- the class loader used for instantiating objects, ornull
to use the default class loader- Returns:
- an instance of
DefaultHandler
for SAX parser - Since:
- 1.7
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/11/2024 21:45:28 Cette version de la page est en cache (à la date du 21/11/2024 21:45:28) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 29/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/beans/xmldecoder.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.