<?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>Function13.net &#187; eclipse</title>
	<atom:link href="http://www.function13.net/tag/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.function13.net</link>
	<description>A blog about technology and code.</description>
	<lastBuildDate>Tue, 23 Feb 2010 07:37:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing the Eclipse IDE</title>
		<link>http://www.function13.net/2008/07/15/install-eclipse-on-windows/</link>
		<comments>http://www.function13.net/2008/07/15/install-eclipse-on-windows/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 03:59:45 +0000</pubDate>
		<dc:creator>lijamez</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://lijamez.wordpress.com/?p=46</guid>
		<description><![CDATA[This guide will show beginner programmers how to set up and install JDK and the Eclipse IDE. I will be installing JDK 6 Update 7 and Eclipse 3.4.0 Ganymede. Get JDK Mac Users: Skip this as you already have JDK. Do a system update to check if you have latest one. You will need to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.function13.net/wp-content/eclipse-ganymede.png"><img class="aligncenter size-full wp-image-476" title="eclipse-ganymede" src="http://www.function13.net/wp-content/eclipse-ganymede.png" alt="eclipse-ganymede" width="455" height="295" /></a></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p>This guide will show beginner programmers how to set up and install <a href="http://en.wikipedia.org/wiki/Java_%28programming_language%29">JDK</a> and the <a href="http://en.wikipedia.org/wiki/Eclipse_ide">Eclipse IDE</a>. I will be installing JDK 6 Update 7 and Eclipse 3.4.0 Ganymede.</p>
<p><span id="more-46"></span></p>
<p style="text-align:center;">
<h3>Get JDK</h3>
<p>Mac Users: Skip this as you already have JDK. Do a system update to check if you have latest one.</p>
<p>You will need to install JDK first by going to <a href="http://java.sun.com/javase/downloads/index.jsp">Java SE Downloads</a> and choose &#8220;Java x Update y&#8221; where x is the latest version of Java and y is the latest non-beta update. (Do not get the version with NetBeans or Java EE unless you know what youre doing.) Installation is straightforward, but it may take some time. Go grab a coffee.</p>
<h3>Get Eclipse</h3>
<p>You can go to <a href="http://www.eclipse.org/downloads/">Eclipse.org&#8217;s Download Section</a> and choose &#8220;Eclipse IDE for Java Developers.&#8221; Extract the contents of the zip file to wherever you wish.</p>
<h4>Setting Up</h4>
<p style="text-align:center;"><a href="http://lijamez.files.wordpress.com/2008/07/01.png"><img class="alignnone size-full wp-image-53" src="http://lijamez.files.wordpress.com/2008/07/01.png" alt="" width="510" height="209" /></a><a href="http://lijamez.files.wordpress.com/2008/07/00.png"> </a></p>
<p>Once you fire up Eclipse, it will ask you for a path to your workspace. This folder will contain all of the projects you create with Eclipse as subdirectories.</p>
<p style="text-align:center;"><a href="http://lijamez.files.wordpress.com/2008/07/02.png"><img class="alignnone size-full wp-image-54" src="http://lijamez.files.wordpress.com/2008/07/02.png" alt="" width="510" height="382" /></a></p>
<p>Once that&#8217;s done Eclipse will greet you with a Welcome window. Just click on &#8220;Go to Workbench&#8221; at the far right and you&#8217;ll never need to see this screen again.</p>
<p><a href="http://lijamez.files.wordpress.com/2008/07/03.png"><img class="aligncenter size-full wp-image-55" src="http://lijamez.files.wordpress.com/2008/07/03.png" alt="" width="509" height="439" /></a></p>
<p>Now we will make sure that Eclipse is using the Java SDK you just downloaded. Click Window &gt; Preferences. Then, on the left panel expand Java, then click on Installed JREs. Make sure that the version of Java you installed is there and checked. If there are multiple items then, unless you plan to use them all, check only the version you downloaded.</p>
<p>If your version is not there, then click Add, choose Standard VM, and click next. Browse to X:\Program Files\Java\jreX.X.X_XX and everything should be filled out automatically. Click Finish.</p>
<p><a href="http://lijamez.files.wordpress.com/2008/07/06.png"><img class="aligncenter size-full wp-image-71" src="http://lijamez.files.wordpress.com/2008/07/06.png" alt="" width="510" height="421" /></a></p>
<p>Also make sure that the compliance level is set up properly. Click &#8220;Compiler&#8221; under &#8220;Java&#8221; and check the Compiler Compliance Level. If you are using JDK 6, then choose &#8220;1.6&#8243; in the drop down menu. If you are using JDK 5 for some reason, then choose 1.5. Etc.</p>
<h3>Testing Eclipse</h3>
<p><a href="http://lijamez.files.wordpress.com/2008/07/04.png"><img class="aligncenter size-full wp-image-56" src="http://lijamez.files.wordpress.com/2008/07/04.png" alt="" width="500" height="500" /></a></p>
<p>Click File &gt; New &gt; Java Project and let&#8217;s make a simple HelloWorld project. Notice the workspace path and JRE that is being used. Then click Finish.</p>
<p><a href="http://lijamez.files.wordpress.com/2008/07/05.png"><img class="aligncenter size-full wp-image-57" src="http://lijamez.files.wordpress.com/2008/07/05.png" alt="" width="500" height="690" /></a></p>
<p>Create a class HelloWorld by clicking on the HelloWorld project folder on the left and clicking the &#8220;C+&#8221; icon in the toolbar. Name the new class HelloWorld and click Finish.</p>
<p>Paste the following code into HelloWorld.java.</p>
<blockquote><p>public class HelloWorld<br />
{<br />
public static void main (String[] args)<br />
{<br />
System.out.println(&#8220;Hello Eclipse!&#8221;);<br />
}<br />
}</p></blockquote>
<p>Then, click Run in the toolbar. The console at the bottom should say &#8220;Hello Eclipse!&#8221;</p>
<h3>Additional Resources:</h3>
<p><a href="http://www.drjava.org/">Dr. Java</a> is a slimmer IDE that focuses on only the essentials. Try it if you need a more lightweight IDE. Also available for Mac OS X.</p>
<p><a href="http://java.sun.com/javase/6/docs/">The Java SE 6 Documentation</a></p>
<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced">
<ul class="socials">
<li class="sexy-reddit">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-digg">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-delicious">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-stumbleupon">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-facebook">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-linkedin">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-google">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-slashdot">
			<a href="" rel="nofollow" title=""></a>
		</li>
<li class="sexy-blogger">
			<a href="" rel="nofollow" title=""></a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.function13.net/2008/07/15/install-eclipse-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
