<?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>Java, Webprogrammierung, Linux und mehr &#187; options</title>
	<atom:link href="http://www.jgeppert.com/tag/options/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jgeppert.com</link>
	<description>Virtual Home of Johannes Geppert</description>
	<lastBuildDate>Sun, 29 Aug 2010 12:41:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Java Einstellungen wieder laden</title>
		<link>http://www.jgeppert.com/2008/07/java-einstellungen-wieder-laden/</link>
		<comments>http://www.jgeppert.com/2008/07/java-einstellungen-wieder-laden/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 19:38:25 +0000</pubDate>
		<dc:creator>jogep</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[laden]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[properties]]></category>

		<guid isPermaLink="false">http://www.jgeppert.com/?p=16</guid>
		<description><![CDATA[Um mit Java ein gespeichert Einstellungen wieder zu laden verwendet folgenden Code. try &#123; File f = new File&#40;&#34;options.properties&#34;&#41;; Properties p = new Properties&#40;&#41;; p.loadFromXML&#40;new FileInputStream&#40;f&#41;&#41;; &#160; port = p.getProperty&#40;&#34;port&#34;&#41;; host = p.getProperty&#40;&#34;host&#34;&#41;; &#125; catch &#40;Exception e&#41; &#123; System.out.println&#40;&#34;No options found, using default!&#34;&#41;; &#125; Bookmark It Hide Sites]]></description>
		<wfw:commentRss>http://www.jgeppert.com/2008/07/java-einstellungen-wieder-laden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Einstellungen speichern</title>
		<link>http://www.jgeppert.com/2008/07/java-einstellungen-speichern/</link>
		<comments>http://www.jgeppert.com/2008/07/java-einstellungen-speichern/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 19:35:53 +0000</pubDate>
		<dc:creator>jogep</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[properties]]></category>
		<category><![CDATA[speichern]]></category>

		<guid isPermaLink="false">http://www.jgeppert.com/?p=14</guid>
		<description><![CDATA[Um in Java Einstellungen zu speichern, um zum Beispiel eine Konfiguration zu sichern, könnt Ihr wie folgt vorgehen. File f = new File&#40;&#34;options.properties&#34;&#41;; Properties p = new Properties&#40;&#41;; &#160; p.setProperty&#40;&#34;port&#34;, &#34;8080&#34;&#41;; p.setProperty&#40;&#34;host&#34;, &#34;localhost&#34;&#41;; &#160; p.storeToXML&#40;new FileOutputStream&#40;f&#41;, new Date&#40;System.currentTimeMillis&#40;&#41;&#41;.toString&#40;&#41;&#41;; Bookmark It Hide Sites]]></description>
		<wfw:commentRss>http://www.jgeppert.com/2008/07/java-einstellungen-speichern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
