<?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>The Developer&#039;s Info &#187; Java Basic I/O</title>
	<atom:link href="http://thedevelopersinfo.com/category/java/java-1-6/java-io/java-basic-io/feed/" rel="self" type="application/rss+xml" />
	<link>http://thedevelopersinfo.com/</link>
	<description>Resource which helps to developers to learn and use new technologies and application frameworks.</description>
	<lastBuildDate>Sun, 21 Aug 2011 09:30:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using InputStream in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/24/using-inputstream-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/24/using-inputstream-in-java/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 14:31:01 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java Basic I/O]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1364</guid>
		<description><![CDATA[<p>InputStream is the abstract super class for all input streams. It declares the three basic methods needed to read bytes of data from a stream. It also has methods for closing streams, checking how many bytes of data are available to be read, skipping over input, marking a position in a stream and resetting back <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/24/using-inputstream-in-java/">Using InputStream in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/24/using-inputstream-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using OutputStream in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/24/using-outputstream-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/24/using-outputstream-in-java/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 13:19:17 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java Basic I/O]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1357</guid>
		<description><![CDATA[<p>OutputStream class declares basic methods which you need to write bytes of data onto a stream.</p> Writing bytes to the OutputStream <p>OutputStream class has write() method which is fundamental:</p> public abstract void write(int b) throws IOException <p>This method writes a byte of data whose value should be between 0 and 255. If I pass a <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/24/using-outputstream-in-java/">Using OutputStream in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/24/using-outputstream-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Scanner for reading data from system console in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/22/using-scanner-for-reading-data-from-system-console-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/22/using-scanner-for-reading-data-from-system-console-in-java/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 19:32:10 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java Basic I/O]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1325</guid>
		<description><![CDATA[<p>Java has one more way for reading data from system console. Scanner was introduced in Java 1.5. Scanner class allows to read data from system console. Here I want to show example about it. Example reads String and int values and then prints them:</p> import java.util.Scanner; /** * This class shows how to use Scanner <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/22/using-scanner-for-reading-data-from-system-console-in-java/">Using Scanner for reading data from system console in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/22/using-scanner-for-reading-data-from-system-console-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading data from console with Console class in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/22/reading-data-from-console-with-console-class-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/22/reading-data-from-console-with-console-class-in-java/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 16:24:54 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java Basic I/O]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1320</guid>
		<description><![CDATA[<p>Java 6 allows to read data from system console with Console class. There are several ways to do it, but I personally like this one. Here I will show example about how to read data with Console class. It is very easy and I will not describe how it works. If you will not understand <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/22/reading-data-from-console-with-console-class-in-java/">Reading data from console with Console class in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/22/reading-data-from-console-with-console-class-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting System.out, System.in, System.err in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/22/redirecting-system-out-system-in-system-err-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/22/redirecting-system-out-system-in-system-err-in-java/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 08:51:47 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java Basic I/O]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1284</guid>
		<description><![CDATA[<p>Sometimes need to redirect System.out, System.in, System.err. It is very easy. I am going to show here how you can do it. System class has for redirecting several methods:</p> System.setOut(new PrintStream(new FileOutputStream("outputFile"))); System.setErr(new PrintStream(new FileOutputStream("errorFile"))); System.setIn(new FileInputStream("inputFile")); <p>Of course I am going to show example of their usage. This is very simple example, but it <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/22/redirecting-system-out-system-in-system-err-in-java/">Redirecting System.out, System.in, System.err in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/22/redirecting-system-out-system-in-system-err-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.364 seconds -->

