<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Java Codes</title>
	<atom:link href="http://javacoders.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://javacoders.wordpress.com</link>
	<description>I think I'm feeling the Java aroma</description>
	<lastBuildDate>Sat, 10 Oct 2009 15:56:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='javacoders.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Java Codes</title>
		<link>http://javacoders.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://javacoders.wordpress.com/osd.xml" title="Java Codes" />
	<atom:link rel='hub' href='http://javacoders.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Factorial</title>
		<link>http://javacoders.wordpress.com/2009/10/10/factorial/</link>
		<comments>http://javacoders.wordpress.com/2009/10/10/factorial/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 15:56:51 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Cliche]]></category>
		<category><![CDATA[Factorial]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programs]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/?p=54</guid>
		<description><![CDATA[Java code to find factorial of a number<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=54&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This small program calculate the factorial of a number</p>
<p><pre class="brush: java;">

import java.util.Scanner;

public class Factorial {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		System.out.print(&quot;Enter Number : &quot;);
		int input = scanner.nextInt();
		
		System.out.println(&quot;Factorial Of &quot; + input + &quot; = &quot; + factorial(input));
	}
	
	public static long factorial(int limit){
		long temp = 1;
		for(int i = 1; i &lt;= limit; i++){
			temp = temp * i;
		}
		return temp;
	}

}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=54&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2009/10/10/factorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Converting ArrayList To Array</title>
		<link>http://javacoders.wordpress.com/2009/03/03/converting-arraylist-to-array/</link>
		<comments>http://javacoders.wordpress.com/2009/03/03/converting-arraylist-to-array/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 05:54:27 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Array]]></category>
		<category><![CDATA[ArrayList]]></category>
		<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/?p=47</guid>
		<description><![CDATA[Converting An ArrayList To Aray<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=47&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Important usage of showing an ArrayList as Array is when you used to pass arguments as arrays and not as ArrayList.</p>
<p><pre class="brush: java;">

import java.util.ArrayList;

public class ArrayListToArray
{
    public static void main(String[] args)
    {
        ArrayList al = new ArrayList();

        //Add Elements
        al.add(new Integer(1));
        al.add(new Integer(10));
        al.add(new Integer(21));

        //Show contents
        System.out.println(&quot;Contents of Arraylist : &quot; + al);

        //Get Array
        Object[] arr = al.toArray();

        //Print Array
        int sum = 0;
        for(Object x : arr)
        {
            System.out.println(x);
            sum += ((Integer)x).intValue(); //Converting object to int
        }

        System.out.println(&quot;Sum = &quot; + sum);
    }
}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=47&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2009/03/03/converting-arraylist-to-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>ArrayList</title>
		<link>http://javacoders.wordpress.com/2009/03/03/arraylist/</link>
		<comments>http://javacoders.wordpress.com/2009/03/03/arraylist/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 05:42:47 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[ArrayList]]></category>
		<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/?p=41</guid>
		<description><![CDATA[ArrayList Example<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=41&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An ArrayList is another collection implementation.</p>
<p><pre class="brush: java;">

import java.util.*;

public class ArrayListDemo
{
    public static void main(String[] args)
    {
        ArrayList al = new ArrayList();
        System.out.println(&quot;Initial Size Of ArrayList : &quot; + al.size());

        //Add elements to array list
        al.add(&quot;i&quot;);
        al.add(&quot;h&quot;);
        al.add(&quot;u&quot;);
        al.add(&quot;m&quot;);
        al.add(&quot;a&quot;);
        al.add(&quot;n&quot;);
        al.add(&quot;o&quot;);
        al.add(&quot;i&quot;);
        al.add(&quot;d&quot;);
        al.add(&quot;.&quot;);
        al.add(&quot;s&quot;);

        System.out.println(&quot;Size of ArrayList after additions : &quot;+ al.size());

        //Contsnt of ArrayList
        System.out.println(&quot;Contents of ArrayList : &quot; + al);

        //Remove Elements From ArrayList
        al.remove(&quot;.&quot;);
        al.remove(6);

        //Contents of ArrayList after removal
        System.out.println(&quot;Size of arraylist after removal : &quot; + al.size());
        System.out.println(&quot;Contents After Removal : &quot; + al);
    }
}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=41&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2009/03/03/arraylist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Array</title>
		<link>http://javacoders.wordpress.com/2009/03/03/array/</link>
		<comments>http://javacoders.wordpress.com/2009/03/03/array/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 05:32:03 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Array]]></category>
		<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/2009/03/03/array/</guid>
		<description><![CDATA[Array Collection Demo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=37&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This program will demonstrate the working of an Array. Here data can be added in to array just like a normal array in other langauges..</p>
<p>* A new instance of an Array can be created using the <span style="color:#0000ff;">new</span> keyword</p>
<p>* The elements in an Array can be sorted using <span style="color:#0000ff;">sort()</span> function</p>
<p>* An array element(s) can be modified using the <span style="color:#0000ff;">fill()</span> function. Fill function can be used with different constructors. Here we used to change the value of an array from index 2 to 6 by a value -1 as you can see in line 21.</p>
<p><pre class="brush: java;">

import java.util.*;

public class ArrayDemo
{
    public static void main(String[] args)
    {
        int[] arr =new int[10];
        for(int i = 0; i &lt; 10; i++)
        {
            arr[i] = -3 * i;
        }

        //Display, Sort, Display
        System.out.println(&quot;Original Contents Of Array&quot;);
        display(arr);
        Arrays.sort(arr);
        System.out.println(&quot;\nSorted Array&quot;);
        display(arr);

        //Fill &amp; Display
        Arrays.fill(arr,2,6,-1);
        System.out.println(&quot;\nArray After Fill&quot;);
        display(arr);

        //Again Sorting
        Arrays.sort(arr);
        System.out.println(&quot;\nSorted Array&quot;);
        display(arr);

        //Location Of -9
        int index = Arrays.binarySearch(arr, -9);
        System.out.print(&quot;\n-9 is at location : &quot; + index + &quot;\n&quot;);

    }

    public static void display(int[] array)
    {
        for(int i = 0; i &lt; array.length; i++)
        {
            System.out.print(array[i] + &quot; &quot;);
        }
    }
}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=37&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2009/03/03/array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Command Line Arguments</title>
		<link>http://javacoders.wordpress.com/2009/03/01/command-line-arguments/</link>
		<comments>http://javacoders.wordpress.com/2009/03/01/command-line-arguments/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 17:27:13 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Simple Programs]]></category>
		<category><![CDATA[Command Line]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/?p=30</guid>
		<description><![CDATA[Accepting Command Line Arguments While Running A Java Program<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=30&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This example program will shows how to accept command line arguments.</p>
<p><pre class="brush: java;">

public class CommandLine
{
    public static void main(String[] args)
    {
        System.out.println(&quot;Arguments are&quot;);
        for(int i = 0; i&lt;args.length; i++)
        {
            System.out.println(args[i]);
        }
    }
}

</pre></p>
<p>Save file as &#8220;CommandLine.java&#8221;<br />
Compile the program as &#8220;javac CommandLine.java&#8221;<br />
run program as &#8220;java CommadLine Hello World&#8221;<br />
(All without quotes)</p>
<p>Here we entered the string &#8220;Hello World&#8221; as command line argument to the application while invoking it.  And this string will store in string array variable args[] that we just declared in our main method. We can pass  as many arguments as we wanted; just put a space between arguments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=30&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2009/03/01/command-line-arguments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple Addition</title>
		<link>http://javacoders.wordpress.com/2009/03/01/simple-addition/</link>
		<comments>http://javacoders.wordpress.com/2009/03/01/simple-addition/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 07:33:28 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Simple Programs]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/?p=27</guid>
		<description><![CDATA[This program will add two numbers and print their results.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=27&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This program will add two numbers and print their results.</p>
<p><pre class="brush: java;">

class Addition
{
     public static void main(String[] args)
     {
           int a = 10;
           int b = 20;
           int c = a + b;

           System.out.println(&quot;Sum of &quot; + a + &quot; and b is : &quot; + c);
     }
}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=27&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2009/03/01/simple-addition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World</title>
		<link>http://javacoders.wordpress.com/2008/12/07/hello-world-2/</link>
		<comments>http://javacoders.wordpress.com/2008/12/07/hello-world-2/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 14:32:17 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Hello World]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/2008/12/07/hello-world-2/</guid>
		<description><![CDATA[Hello World, all the great programmers were started from these two words, we will continue the tradition.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=4&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello World, all the great programmers were started from these two words, we will continue the tradition.</p>
<p><pre class="brush: java;">
//Prints Hello World in console window
class HelloWorld
{
     public static void main(String[] args)
     {
           System.out.println(&quot;Hello World&quot;);
     }
}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=4&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2008/12/07/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Blog is in creation</title>
		<link>http://javacoders.wordpress.com/2008/09/27/blog-is-in-creation/</link>
		<comments>http://javacoders.wordpress.com/2008/09/27/blog-is-in-creation/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 10:11:39 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://javacoders.wordpress.com/2008/09/27/blog-is-in-creation/</guid>
		<description><![CDATA[Blog is in creation i will add contents as time passes<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=3&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Blog is in creation i will add contents as time passes</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=3&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2008/09/27/blog-is-in-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://javacoders.wordpress.com/2008/09/22/hello-world/</link>
		<comments>http://javacoders.wordpress.com/2008/09/22/hello-world/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 16:47:07 +0000</pubDate>
		<dc:creator>ihumanoid</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=1&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javacoders.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javacoders.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javacoders.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javacoders.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javacoders.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javacoders.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javacoders.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javacoders.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javacoders.wordpress.com&amp;blog=4941317&amp;post=1&amp;subd=javacoders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javacoders.wordpress.com/2008/09/22/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/45a330fc1c6462d382a12b55bc3f16c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ihumanoid</media:title>
		</media:content>
	</item>
	</channel>
</rss>
