<?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>ForDevs &#187; Java</title>
	<atom:link href="http://www.fordevs.com/category/programming/java/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Fri, 25 Nov 2011 18:55:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to enable gzip compression in jBoss?</title>
		<link>http://www.fordevs.com/2010/11/how-to-enable-gzip-compression-in-jboss.html</link>
		<comments>http://www.fordevs.com/2010/11/how-to-enable-gzip-compression-in-jboss.html#comments</comments>
		<pubDate>Sun, 28 Nov 2010 10:18:36 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=913</guid>
		<description><![CDATA[To enable JBoss http protocol gzip compression you have to change the server.xml file. Location: Less than 4.0 Version : ${jBoss-home}\server\default\deploy\jbossweb-tomcat50.sar\server.xml above 4.0 Version     : ${jBoss-home}\server\default\deploy\jboss-web.deployer\server.xml Find this piece of xml code: &#60;Connector port=&#8221;8080&#8243; address=&#8221;${jboss.bind.address}&#8221; maxThreads=&#8221;250&#8243; maxHttpHeaderSize=&#8221;8192&#8243; emptySessionPath=&#8221;true&#8221; protocol=&#8221;HTTP/1.1&#8243; enableLookups=&#8221;false&#8221; redirectPort=&#8221;8443&#8243; acceptCount=&#8221;100&#8243; connectionTimeout=&#8221;20000&#8243; disableUploadTimeout=&#8221;true&#8221; compression=&#8221;0&#8243;&#62;&#60;/Connector&#62; When compression is disabled compression parameter is set to 0. [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/11/how-to-enable-gzip-compression-in-jboss.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Generics in java?</title>
		<link>http://www.fordevs.com/2010/11/what-is-generics-in-java.html</link>
		<comments>http://www.fordevs.com/2010/11/what-is-generics-in-java.html#comments</comments>
		<pubDate>Sat, 27 Nov 2010 15:54:42 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=904</guid>
		<description><![CDATA[Generics: Generics provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion). For Example: List&#60;String&#62; stringList = new ArrayList&#60;String&#62;(); stringList.add(&#8220;one&#8221;); stringList.add(&#8220;two&#8221;); stringList.add(&#8220;three&#8221;); stringList.add(&#8220;four&#8221;); stringList.add(&#8220;five&#8221;); In the above example,we can add only the String in a ArrayList.If we add Other than String mean it&#8217;s throw an error. Other Uses Of [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/11/what-is-generics-in-java.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to deploy WAR/JAR File in JBOSS</title>
		<link>http://www.fordevs.com/2010/05/how-to-deploy-warjar-file-in-jboss.html</link>
		<comments>http://www.fordevs.com/2010/05/how-to-deploy-warjar-file-in-jboss.html#comments</comments>
		<pubDate>Tue, 25 May 2010 17:18:20 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JBOSS]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=757</guid>
		<description><![CDATA[Step to deploy WAR/JAR File in JBOSS Paste your WAR/JAR File into jboss\server\default\deploy Folder Go to jboss\bin and run the file run.bat. After successful run.go to jboss\server\default folder and see three new folder log,tmp,work. log &#8211; Log File is created here tmp &#8211; All the Deployed WAR and JAR File extacted here. work &#8211; all [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/05/how-to-deploy-warjar-file-in-jboss.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between String and String Buffer</title>
		<link>http://www.fordevs.com/2010/05/difference-between-string-and-string-buffer.html</link>
		<comments>http://www.fordevs.com/2010/05/difference-between-string-and-string-buffer.html#comments</comments>
		<pubDate>Sat, 22 May 2010 18:24:18 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=754</guid>
		<description><![CDATA[String ===== String are immutable object.Its value cannot be changed(constant).String object are readonly.If you create one instance of string and change the value of string then it create new instance. String Buffer ========= String Buffer is mutable.Its Value can be Changed.If you create one instance and append the text without creating a new instance Example: [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/05/difference-between-string-and-string-buffer.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert from .class file to .java file in Java</title>
		<link>http://www.fordevs.com/2009/11/how-to-convert-from-class-file-to-java-file-in-java.html</link>
		<comments>http://www.fordevs.com/2009/11/how-to-convert-from-class-file-to-java-file-in-java.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 09:15:47 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=631</guid>
		<description><![CDATA[Step 1: Download Java – Decompiler from http://download.cnet.com/windows/3055-2213_4-10046809.html?tag=pdl-redir Step 2: Install the Java – Decompiler in your PC. Step 3: Go to All Programs &#8211;&#62; DJ Java Decomplier &#8211;&#62; DJ Java Decomplier. Step 4: Select File &#8211;&#62; Open then Choose the Class File in File Dialog box. Step 5: Java File is created from class [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/11/how-to-convert-from-class-file-to-java-file-in-java.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java 1.5 features</title>
		<link>http://www.fordevs.com/2009/10/java-15-features.html</link>
		<comments>http://www.fordevs.com/2009/10/java-15-features.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 02:59:33 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=611</guid>
		<description><![CDATA[Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion). Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities. Autoboxing/unboxing: automatic conversions between primitive types (such as int) and primitive wrapper [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/10/java-15-features.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java with JDBC</title>
		<link>http://www.fordevs.com/2009/05/java-with-jdbc.html</link>
		<comments>http://www.fordevs.com/2009/05/java-with-jdbc.html#comments</comments>
		<pubDate>Sat, 30 May 2009 17:45:08 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[jdbc]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=339</guid>
		<description><![CDATA[Combination of java and JDBC is very useful to lets the programmer run his/her program on different platforms. Java programs are secure, robust, automatically downloaded from the network.JDBC API enables Java applications to interact with different types of databases. Some of the advantages of using Java with JDBC are • Easy and economical • Continued [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/05/java-with-jdbc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Networking</title>
		<link>http://www.fordevs.com/2009/05/java-networking.html</link>
		<comments>http://www.fordevs.com/2009/05/java-networking.html#comments</comments>
		<pubDate>Fri, 29 May 2009 17:41:47 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=293</guid>
		<description><![CDATA[Network is nothing but a set of computers which are physically connected together.internet is a network of networks. Protocols: Different networks requires certain set of rules called protocols.java networking is done using TCP/IP protocol Different types of protocols are also available in this protocol they are: *Http(Hyper Text Transfer Protocol) *FTP(File Transfer Protocol) *SMTP(Simple Mail [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/05/java-networking.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you create a Thread</title>
		<link>http://www.fordevs.com/2009/05/how-do-you-create-a-thread.html</link>
		<comments>http://www.fordevs.com/2009/05/how-do-you-create-a-thread.html#comments</comments>
		<pubDate>Wed, 27 May 2009 16:33:10 +0000</pubDate>
		<dc:creator>Jaffar</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Thread]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=285</guid>
		<description><![CDATA[Threads: Thread is a line of execution.In a single-threaded system there is only one execution line (i.e) only one part of program is in the process of execution at any one time To create a new thread: Thread mythread = new thread(this); this referes the current applet &#38; mythread is a variable Example: import java.awt.*; [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/05/how-do-you-create-a-thread.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaBeans</title>
		<link>http://www.fordevs.com/2009/02/javabeans.html</link>
		<comments>http://www.fordevs.com/2009/02/javabeans.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 15:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/javabeans.html</guid>
		<description><![CDATA[Requirements for JavaBeans: there have to be set/get methods specified has to have public default constructor (without parameters) it should be in a package serializable get/set methods has to have the same data type! bean cannot modify content of a page! &#8230; in general, JavaBean is a standard Class. It can be used as a [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/javabeans.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

