<?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 &#8211; opencodez</title>
	<atom:link href="https://www.opencodez.com/tag/java/feed" rel="self" type="application/rss+xml" />
	<link>https://www.opencodez.com</link>
	<description>develope &#124; share &#124; reuse</description>
	<lastBuildDate>Tue, 19 Jan 2021 09:36:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<!--Theme by MyThemeShop.com-->
	<item>
		<title>How to Build and Deploy Web Service and Client in Java</title>
		<link>https://www.opencodez.com/java/how-to-build-and-deploy-web-service-and-client-in-java.htm</link>
					<comments>https://www.opencodez.com/java/how-to-build-and-deploy-web-service-and-client-in-java.htm#comments</comments>
		
		<dc:creator><![CDATA[Renuka]]></dc:creator>
		<pubDate>Sun, 29 Jan 2017 11:22:52 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Service]]></category>
		<guid isPermaLink="false">http://www.opencodez.com/?p=2004</guid>

					<description><![CDATA[Web Services are most widely implemented examples of Service Oriented Architecture (SOA). A service contract is defined with the help of SOAP and Web Service Definition Language (WSDL) and that is published for other applications to use. In this article we will see how we can create web service and web service client in java. Software [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.opencodez.com/java/how-to-build-and-deploy-web-service-and-client-in-java.htm/feed</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Write Config File in Java</title>
		<link>https://www.opencodez.com/java/write-config-file-in-java.htm</link>
					<comments>https://www.opencodez.com/java/write-config-file-in-java.htm#respond</comments>
		
		<dc:creator><![CDATA[Pavan]]></dc:creator>
		<pubDate>Tue, 25 Jun 2013 11:23:37 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Config File]]></category>
		<guid isPermaLink="false">http://www.opencodez.com/?p=715</guid>

					<description><![CDATA[Most of the time we use properties file only to load some fairly static values that are used across the project. Some one once asked me whether I have any sample to write the config file from java? I didn&#8217;t see much of a benefit of this. Who would want to write config file from [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.opencodez.com/java/write-config-file-in-java.htm/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java Design Patterns List</title>
		<link>https://www.opencodez.com/java/java-design-patterns-list.htm</link>
					<comments>https://www.opencodez.com/java/java-design-patterns-list.htm#respond</comments>
		
		<dc:creator><![CDATA[Pavan]]></dc:creator>
		<pubDate>Sat, 03 Jul 2010 12:12:15 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Design Patterns]]></category>
		<guid isPermaLink="false">http://www.opencodez.com/?p=499</guid>

					<description><![CDATA[Here is the list of Java Design Patterns. Each pattern is explained in detail with example and sample code. Hope you find this helpful. Creational Java Design Patterns Abstract Factory Builder Factory Method Prototype Singleton Structural Patterns Adapter Bridge Composite Decorator Facade Flyweight Proxy Behavioral Patterns Chain of Responsibility Command Interpreter Iterator Mediator Memento Observer [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.opencodez.com/java/java-design-patterns-list.htm/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Java Sorting using Comparator</title>
		<link>https://www.opencodez.com/java/java-sorting-using-comparator.htm</link>
					<comments>https://www.opencodez.com/java/java-sorting-using-comparator.htm#comments</comments>
		
		<dc:creator><![CDATA[Pavan]]></dc:creator>
		<pubDate>Mon, 24 May 2010 11:01:16 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[comparator]]></category>
		<category><![CDATA[sorting]]></category>
		<guid isPermaLink="false">http://www.opencodez.com/?p=449</guid>

					<description><![CDATA[Lets see how we can sort our Employee objects using different criteria like id, name, salary. SortTest remains the main class that will perform creating and filling objects for us. This time employee class is plain old java classs that holds some data about each employee we create. Here I have created scenarios or you can [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.opencodez.com/java/java-sorting-using-comparator.htm/feed</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Java Sorting using Comparable</title>
		<link>https://www.opencodez.com/java/java-sorting-using-comparable.htm</link>
					<comments>https://www.opencodez.com/java/java-sorting-using-comparable.htm#comments</comments>
		
		<dc:creator><![CDATA[Pavan]]></dc:creator>
		<pubDate>Mon, 24 May 2010 10:27:01 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[comparable]]></category>
		<category><![CDATA[comparator]]></category>
		<category><![CDATA[java generics]]></category>
		<category><![CDATA[sorting]]></category>
		<guid isPermaLink="false">http://www.opencodez.com/?p=426</guid>

					<description><![CDATA[In Java you can do sorting by implementing 2 interfaces 1) Comparable 2) Comparator Here we will see sorting example using Comparable Interface. As an example we will be sorting objects of Employee class. When using comaprable interface make sure the object class which you are sorting implements comaprable interface and override compareTo method correctly. [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.opencodez.com/java/java-sorting-using-comparable.htm/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 54/142 objects using disk
Page Caching using disk: enhanced 
Database Caching 2/42 queries in 0.012 seconds using disk

Served from: www.opencodez.com @ 2026-07-27 06:59:42 by W3 Total Cache
-->