<?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>India JAVA &#124; Java Development Softwares &#124; Java Programming &#124; Java Tutorials &#187; admin </title>
	<atom:link href="http://www.indiajava.org/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.indiajava.org</link>
	<description>India JAVA &#124; Java Development Softwares &#124; Java Programming &#124; Java Tutorials</description>
	<lastBuildDate>Thu, 03 Feb 2011 05:44:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction to Java</title>
		<link>http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html</link>
		<comments>http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html#comments</comments>
		<pubDate>Sat, 11 Jul 2009 14:01:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=5</guid>
		<description><![CDATA[




 Java is an object oriented and structured programming language, designed by Sun Microsystems in the year 1991. Java is a third generation programming language. It has an in built application interface which has the ability to handle the graphics and user interfaces that creates the applets or applications.
The very advantage of java is its [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>Java is an object oriented and structured programming language, designed by Sun Microsystems in the year 1991. Java is a third generation programming language. It has an in built application interface which has the ability to handle the graphics and user interfaces that creates the applets or applications.</p>
<p>The very advantage of java is its &#8220;portability&#8221;, the programmer can write the program and compile in the same kind of environment as it is written and after that it can be run anywhere.</p>
<p>Java relates to both C and C++, it uses the syntax of C and the object oriented concepts from c++ and this makes Java appealing. When a source code is given as the input, the output from java compiler is the &#8220;bytecode&#8221;. Bytecode contains set of instructions which will be executed by Java Virtual machine (JVM). In a more simple way, I can say JVM interprets the bytecode and this is the reason that java can be run anywhere. Applets are the programs which are embedded in to web page and can be executed where as the applications are directly executed by JVM.</p>
<p>It is not always possible to compile the complete program at the same time, so java uses just-in-time compiler to compile a set of bytecodes in real time for execution and the remaining codes will just be interpreted and thus makes the execution of Java program faster. The two main building blocks of java programming are the classes and objects. Objects are the instance of class and class is a template for creating objects.</p>
<p>Unlike in c/c++ you need not manually allocate/de allocate dynamic memory, java itself does this and also it has garbage collection for the unused objects. Java program handles the run time errors too. Java supports multithreaded programming.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Validation With Dynamic Proxies</title>
		<link>http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html</link>
		<comments>http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html#comments</comments>
		<pubDate>Thu, 19 Jul 2007 06:25:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=4</guid>
		<description><![CDATA[




 Decouple validation processes from your business object implementations
Version 1.3 of the Java platform saw the introduction of the dynamic proxy facility. Dynamic proxies offer many interesting solutions to Java developers, including a validation scheme that easily decouples validation logic from an application&#8217;s core business logic. In this article, Java developer Eric Olson shows you [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>Decouple validation processes from your business object implementations</p>
<p>Version 1.3 of the Java platform saw the introduction of the dynamic proxy facility. Dynamic proxies offer many interesting solutions to Java developers, including a validation scheme that easily decouples validation logic from an application&#8217;s core business logic. In this article, Java developer Eric Olson shows you how dynamic proxies can keep your core application code free of validation routines and focused solely on business logic.</p>
<p>Validation is an essential aspect of many enterprise applications. Most business methods contain validation logic to ensure that pre-conditions are met before carrying out business logic. Code that deals with values entered through a user interface employs validation logic to ensure that the values entered by a user are valid before carrying out actions that may affect other areas of the application or other users. Validation is an especially important component of applications that employ and interact with other loosely coupled components, as well as services that may not be strict in their assertions.</p>
<p>As important as it is to the safety and functionality of your business applications, core application logic is often cluttered with validation routines. Validation processes are often scattered throughout method calls, making it difficult to tell the difference between validation logic and core business logic. In most cases, business objects and methods must know some details of the validation process and deal with them directly in their implementation &#8212; for example, a business object may throw a validation exception directly from the business method (either coded directly in the method, or as a result of calling some validation service). The validation exception in this case is really a byproduct of the validation process, however, and would ideally be hidden from the business object implementation.</p>
<p>In this article, I&#8217;ll show you a more decoupled and centralized approach to validation, using the dynamic proxy facility introduced to the Java platform with version 1.3. Working with a single example throughout the article, I&#8217;ll demonstrate the weaknesses of both tightly coupled and loosely coupled validation schemes, and then show you how dynamic
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML processing toolkit facilitates parsing and validation</title>
		<link>http://www.indiajava.org/2007/07/18/7863/xml-processing-toolkit-facilitates-parsing-and-validation/index.html</link>
		<comments>http://www.indiajava.org/2007/07/18/7863/xml-processing-toolkit-facilitates-parsing-and-validation/index.html#comments</comments>
		<pubDate>Thu, 19 Jul 2007 06:24:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=3</guid>
		<description><![CDATA[




 The Java API for XML Processing (JAXP) lets you validate, parse, and transform XML using several different APIs. JAXP provides both ease of use and vendor neutrality. This article, the first of a two-part series introducing JAXP, shows you how to take advantage of the API&#8217;s parsing and validation features. Part 2 will cover [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>The Java API for XML Processing (JAXP) lets you validate, parse, and transform XML using several different APIs. JAXP provides both ease of use and vendor neutrality. This article, the first of a two-part series introducing JAXP, shows you how to take advantage of the API&#8217;s parsing and validation features. Part 2 will cover XSL transformations using JAXP.Java technology and XML are arguably the most important programming developments of the last five years. As a result, APIs for working with XML in the Java language have proliferated. The two most popular &#8212; the Document Object Model (DOM) and the Simple API for XML (SAX) &#8212; have generated a tremendous amount of interest, and JDOM and data-binding APIs have followed (see Resources). Understanding even one or two of these APIs thoroughly is quite a task; using all of them correctly makes you a guru. However, more and more Java developers are finding that they no longer need extensive knowledge of SAX and DOM &#8212; thanks largely to Sun Microsystems&#8217; JAXP toolkit. The Java API for XML Processing (JAXP) makes XML manageable for even beginning Java programmers while still providing plenty of heft for advanced developers. That said, even advanced developers who use JAXP often have misconceptions about the very API they depend on.</p>
<p>This article assumes that you have some basic knowledge of SAX and DOM. If you&#8217;re new to XML parsing, you might want to read up on SAX and DOM first through online sources or skim through my book (see Resources). You don&#8217;t need to be fluent in callbacks or DOM Nodes, but you should at least understand that SAX and DOM are parsing APIs. It would also help to have a basic understanding of their differences. This article will make a lot more sense once you&#8217;ve picked up these basics.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajava.org/2007/07/18/7863/xml-processing-toolkit-facilitates-parsing-and-validation/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2007/07/18/7863/xml-processing-toolkit-facilitates-parsing-and-validation/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Programming Language : What it is ?</title>
		<link>http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html</link>
		<comments>http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html#comments</comments>
		<pubDate>Sat, 13 Jan 2007 13:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=2</guid>
		<description><![CDATA[




 What is java? For the sake of record here is a small introduction.
A high-level programming language developed by Sun Microsystems. Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>What is java? For the sake of record here is a small introduction.</p>
<p>A high-level programming language developed by Sun Microsystems. Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide Web.</p>
<p>Java is an object-oriented language similar to C++, but simplified to eliminate language features that cause common programming errors. Java source code files (files with a .java extension) are compiled into a format called bytecode (files with a .class extension), which can then be executed by a Java interpreter. Compiled Java code can run on most computers because Java interpreters and runtime environments, known as Java Virtual Machines (VMs), exist for most operating systems, including UNIX, the Macintosh OS, and Windows. Bytecode can also be converted directly into machine language instructions by a just-in-time compiler (JIT).</p>
<p>Java is a general purpose programming language with a number of features that make the language well suited for use on the World Wide Web. Small Java applications are called Java applets and can be downloaded from a Web server and run on your computer by a Java-compatible Web browser, such as Netscape Navigator or Microsoft Internet Explorer.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome To www.indiajava.org</title>
		<link>http://www.indiajava.org/2006/12/23/7861/welcome/index.html</link>
		<comments>http://www.indiajava.org/2006/12/23/7861/welcome/index.html#comments</comments>
		<pubDate>Sat, 23 Dec 2006 16:40:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[




 Welcome to www.indiajava.org.

]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>Welcome to www.indiajava.org.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajava.org/2006/12/23/7861/welcome/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2006/12/23/7861/welcome/index.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

