| public class java.beans XMLEncoder
|
Java SE 6 |
XMLEncoder class is a complementary alternative to
the ObjectOutputStream and can used to generate
a textual representation of a JavaBean in the same
way that the ObjectOutputStream can
be used to create binary representation of Serializable
objects. For example, the following fragment can be used to create
a textual representation the supplied JavaBean
and all its properties:
XMLEncoder e = new XMLEncoder(
new BufferedOutputStream(
new FileOutputStream("Test.xml")));
e.writeObject(new JButton("Hello, world"));
e.close();
Despite the similarity of their APIs, the XMLEncoder
class is exclusively designed for the purpose of archiving graphs
of JavaBeans as textual representations of their public
properties. Like Java source files, documents written this way
have a natural immunity to changes in the implementations of the classes
involved. The ObjectOutputStream continues to be recommended
for interprocess communication and general purpose serialization.
The XMLEncoder class provides a default denotation for
JavaBeans in which they are represented as XML documents
complying with version 1.0 of the XML specification and the
UTF-8 character encoding of the Unicode/ISO 10646 character set.
The XML documents produced by the XMLEncoder class are:
XMLEncoder class
uses a redundancy elimination algorithm internally so that the
default values of a Bean's properties are not written to the stream.
Below is an example of an XML archive containing some user interface components from the swing toolkit:
<?xml version="1.0" encoding="UTF-8"?>
<java version="1.0" class="java.beans.XMLDecoder">
<object class="javax.swing.JFrame">
<void property="name">
<string>frame1</string>
</void>
<void property="bounds">
<object class="java.awt.Rectangle">
<int>0</int>
<int>0</int>
<int>200</int>
<int>200</int>
</object>
</void>
<void property="contentPane">
<void method="add">
<object class="javax.swing.JButton">
<void property="label">
<string>Hello</string>
</void>
</object>
</void>
</void>
<void property="visible">
<boolean>true</boolean>
</void>
</object>
</java>
The XML syntax uses the following conventions:
Although all object graphs may be written using just these three tags, the following definitions are included so that common data structures can be expressed more concisely:
Integer class could be written:
<int>123</int>. Note that the XMLEncoder class
uses Java's reflection package in which the conversion between
Java's primitive types and their associated "wrapper classes"
is handled internally. The API for the XMLEncoder class
itself deals only with Objects.
For more information you might also want to check out Using XMLEncoder, an article in The Swing Connection.
| since | 1.4 |
| version | 1.35 03/09/06 |
| See also | java.beans.XMLDecoder, java.io.ObjectOutputStream |
| Constructors | |||||
|---|---|---|---|---|---|
| public | XMLEncoder(OutputStream out) Creates a new output stream for sending JavaBeans to the stream out using an XML encoding.
| ||||
| Methods | |||||
|---|---|---|---|---|---|
| public void | close() This method calls flush, writes the closing
postamble and then closes the output stream associated
with this stream.
| ||||
| public void | flush() This method writes out the preamble associated with the XML encoding if it has not been written already and then writes out all of the values that been written to the stream since the last time flush
was called. After flushing, all internal references to the
values that were written to this stream are cleared.
| ||||
| public void | writeExpression(Expression oldExp) Records the Expression so that the Encoder will produce the actual output when the stream is flushed. This method should only be invoked within the context of initializing a persistence delegate or setting up an encoder to read from a resource bundle. For more information about using resource bundles with the XMLEncoder, see http://java.sun.com/products/jfc/tsc/articles/persistence4/#i18n
| ||||
| public void | writeObject(Object o) Write an XML representation of the specified object to the output.
| ||||
| public void | writeStatement(Statement oldStm) Records the Statement so that the Encoder will produce the actual output when the stream is flushed. This method should only be invoked within the context of initializing a persistence delegate.
| ||||
| Properties | |||||
|---|---|---|---|---|---|
| public void | setOwner(Object owner) Sets the owner of this encoder to owner.
| ||||
| public Object | getOwner() Gets the owner of this encoder.
| ||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2013 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|