<?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 File Streams</title>
	<atom:link href="http://thedevelopersinfo.com/category/java/java-1-6/java-io/java-file-streams/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>Getting separator symbol in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/25/getting-separator-symbol-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/25/getting-separator-symbol-in-java/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 15:43:30 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java File Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1388</guid>
		<description><![CDATA[<p>This snippet of code allows to get symbol which represents separator in your file-system:</p> System.getProperty("file.separator"); <p>No related posts.</p>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/25/getting-separator-symbol-in-java/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Writing files in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/25/writing-files-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/25/writing-files-in-java/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 15:12:40 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java File Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1384</guid>
		<description><![CDATA[<p>I am going to show example which shows how to write a file in Java. If you want to write some file you should start with FileOutputStream. This class is a concrete subclass of OutputStream. Example:</p> package tutorial; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; /** * This class shows how to write a <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/25/writing-files-in-java/">Writing files in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/25/writing-files-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading files in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/25/reading-files-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/25/reading-files-in-java/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 14:30:56 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java File Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1380</guid>
		<description><![CDATA[<p>I am going to show example which shows how to read a file in Java. If you want to read some file you should start with FileInputStream. This class is a concrete subclass of InputStream. It provides an input stream connected to a particular file. Example:</p> package tutorial; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/25/reading-files-in-java/">Reading files in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/25/reading-files-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting system root directory in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/25/getting-system-root-directory-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/25/getting-system-root-directory-in-java/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 13:55:18 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java File Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1377</guid>
		<description><![CDATA[<p>If you are working with file-system in Java, you should understand that your program can run in other types of OS:(Windows, Unix, Linux). These OS has own file-system structure. For example you need to read or write file in Windows, which located at disk C:\, you should write:</p> File root = new File("C:\\"); File dir <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/25/getting-system-root-directory-in-java/">Getting system root directory in Java</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/25/getting-system-root-directory-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting path to user&#8217;s home directory in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/25/getting-path-to-users-home-directory-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/25/getting-path-to-users-home-directory-in-java/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 13:32:53 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java File Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1375</guid>
		<description><![CDATA[<p>There is a way to find out path to user&#8217;s home folder. Need to get system property:</p> System.getProperty("user.home"); <p>That&#8217;s all.</p> <p>No related posts.</p>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/25/getting-path-to-users-home-directory-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting working directory in Java</title>
		<link>http://thedevelopersinfo.com//2010/02/25/getting-working-directory-in-java/</link>
		<comments>http://thedevelopersinfo.com//2010/02/25/getting-working-directory-in-java/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 13:27:16 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java File Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1373</guid>
		<description><![CDATA[<p>Sometimes need to know path to your working directory. It is very easy. Here I am going to show snippet of code which helps with this:</p> System.getProperty("user.dir"); <p>It returns String. Call it and you will know your current working directory.</p> <p>No related posts.</p>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/25/getting-working-directory-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

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

