<?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>web development helpdesk &#187; InputStream</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/inputstream/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to remove synchronization from stream classes?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-remove-synchronization-from-stream-classes?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-remove-synchronization-from-stream-classes</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-remove-synchronization-from-stream-classes#comments</comments>
		<pubDate>Sun, 01 Feb 2009 22:46:49 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[InputStream]]></category>
		<category><![CDATA[OutputStream]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[synchronization]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=738</guid>
		<description><![CDATA[The Java InputStream and OutputStream class are synchronized to be thread safe. If you are using them in a single thread application, or know that they will only be called by a single thread then this is an unnecessary overhead. To remove the synchronization you can copy the source code from the Sun classes, rename [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-remove-synchronization-from-stream-classes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I copy one stream to another using Java?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-copy-one-stream-to-another-using-java?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-copy-one-stream-to-another-using-java</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-copy-one-stream-to-another-using-java#comments</comments>
		<pubDate>Sun, 19 Oct 2008 20:26:36 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[InputStream]]></category>
		<category><![CDATA[OutputStream]]></category>
		<category><![CDATA[stream]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=676</guid>
		<description><![CDATA[You need to read all bytes from source stream to the destination. The read() method will return -1 when eof is reached, otherwise it returns the number of bytes read. public static void copy(InputStream in, OutputStream out int bufferSize) throws IOException { // Read bytes and write to destination until eof byte[] buf = new [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-copy-one-stream-to-another-using-java/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

