<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JavaBlogging &#187; serialization</title>
	<atom:link href="http://www.javablogging.com/tag/serialization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javablogging.com</link>
	<description>Tracking surprises, features and bugs</description>
	<lastBuildDate>Sun, 16 May 2010 03:01:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Serialization to XML</title>
		<link>http://www.javablogging.com/serialization-to-xml/</link>
		<comments>http://www.javablogging.com/serialization-to-xml/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 11:12:53 +0000</pubDate>
		<dc:creator>Miron Sadziak</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[serialization]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[java.beans]]></category>
		<category><![CDATA[XMLDecoder]]></category>
		<category><![CDATA[XMLEncoder]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=481</guid>
		<description><![CDATA[We will show here a method to serialize an instance of a class to an XML file. We will use the java.beans package and contained there classes XMLEncoder and XMLDecoder.  
First we need a class to serialize:




















public class SerializeMe {
    public Integer data;

    public void setData(Integer data) {
 [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/serialization-to-xml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What are writeObject and readObject? Customizing the serialization process</title>
		<link>http://www.javablogging.com/what-are-writeobject-and-readobject-customizing-the-serialization-process/</link>
		<comments>http://www.javablogging.com/what-are-writeobject-and-readobject-customizing-the-serialization-process/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 12:08:27 +0000</pubDate>
		<dc:creator>Miron Sadziak</dc:creator>
				<category><![CDATA[serialization]]></category>
		<category><![CDATA[readObject]]></category>
		<category><![CDATA[writeObject]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=335</guid>
		<description><![CDATA[Using Serialization in Java is pretty simple. If you have some object you would like to serialize, you just make it implement the Serializable interface. Then, you can use the ObjectOutputStream to store that object to a file or send it to some other machine. All non-transient and non-static fields will be serialized and even [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/what-are-writeobject-and-readobject-customizing-the-serialization-process/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is serialVersionUID?</title>
		<link>http://www.javablogging.com/what-is-serialversionuid/</link>
		<comments>http://www.javablogging.com/what-is-serialversionuid/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 11:53:23 +0000</pubDate>
		<dc:creator>Miron Sadziak</dc:creator>
				<category><![CDATA[Basic Java]]></category>
		<category><![CDATA[serialization]]></category>

		<guid isPermaLink="false">http://www.javablogging.com/?p=259</guid>
		<description><![CDATA[Most people learn about serialVersionUID after they write their first serializable object (I know I did). You add &#8216;implements Serializable&#8217; and in the next moment your IDE starts complaining&#8230; so what&#8217;s up?
Lets look at a simple example to see what meaning that variable has. In the example we will use the class SerializeMe shown below:






















class [...]]]></description>
		<wfw:commentRss>http://www.javablogging.com/what-is-serialversionuid/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>
