<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://e-articles.info/rss/s/JAVA/" rel="self" type="application/rss+xml" />
<title> JAVA articles</title>
<description>Free information about JAVA</description>
<link>http://e-articles.info/e/s/s/JAVA/</link>
<language>en-us</language>
<copyright>E-articles.info 2006 - 2009</copyright>
     <item>
        <title> Why Java programmers are taking one step ahead in software development industry</title>
        <description> Various high quality programming languages are used in the Software Industry. Some of them are expensive, while some are affordable by nature, however all of these are vastly used according to the client's requirement.
&amp;nbsp;
Mainly three languages are used and they are </description>
        <guid>http://e-articles.info/e/a/title/Why-Java-programmers-are-taking-one-step-ahead-in-software-development-industry/</guid>
		<link>http://e-articles.info/e/a/title/Why-Java-programmers-are-taking-one-step-ahead-in-software-development-industry/</link>
        <pubDate>Tue, 21 Jul 2009 00:33:17 GMT</pubDate>
     </item>  
     <item>
        <title> SELECTION STATEMENTS IN JAVA</title>
        <description> Like other programming languages java offers the control statements to control the execution of a program.&amp;nbsp; The control statements in java are the selection statements, loop constructs and the jumping statements. The selection statements define the route of the execution considering different conditions... by Fahad Rafique Golra</description>
        <guid>http://e-articles.info/e/a/title/SELECTION-STATEMENTS-IN-JAVA/</guid>
		<link>http://e-articles.info/e/a/title/SELECTION-STATEMENTS-IN-JAVA/</link>
        <pubDate>Wed, 04 Mar 2009 01:41:22 GMT</pubDate>
     </item>  
     <item>
        <title> JAVA and its Advantages</title>
        <description> In today's highly competitive world, JAVA has become one of the most secure technologies for website and software development. Prime benefits of JAVA are platform independency and easy availability for users as it is an open source.
JAVA is an object oriented programming language and it was intended to serve as a new way to manage software complexity... by Steve Lee</description>
        <guid>http://e-articles.info/e/a/title/JAVA-and-its-Advantages/</guid>
		<link>http://e-articles.info/e/a/title/JAVA-and-its-Advantages/</link>
        <pubDate>Thu, 05 Feb 2009 02:49:27 GMT</pubDate>
     </item>  
     <item>
        <title> Java Tactics: Earn A Fortune With Java</title>
        <description> 

  Get       the right Knowledge 
  Get       the right Papers
  Get       the right Direction
  Get       the Money

Hi, my name's Mark Bourne, I've focused mainly on Java  because it's the hottest  language right now and I've mastered it for as long as it's been around, 
to be more precise, I've gathered information, advices,  guidelines and untold secrets from a few of the world's most successful Java  Developers, Architects and Masterminds and I've put it all in one place,  including my own personal experience of how I got rich programming in Java and  how it enabled me to buy my first sports car at the age of 19.
Ok here's the deal, as a Java developer, you can either work  for a company for as long as you live and earn a decent salary, or follow a </description>
        <guid>http://e-articles.info/e/a/title/Java-Tactics:-Earn-A-Fortune-With-Java/</guid>
		<link>http://e-articles.info/e/a/title/Java-Tactics:-Earn-A-Fortune-With-Java/</link>
        <pubDate>Wed, 09 Jul 2008 03:57:32 GMT</pubDate>
     </item>  
     <item>
        <title> Introduction to Object Oriented Programming (OOP)</title>
        <description> The transition from a procedural programming (non-OOP) language to an object-oriented programming language is a large step for many programmers. It is true that both methods of programming can ultimately achieve the same goals, but you will find OOP is a neater and faster way to program, it is more suitable for teamwork, and programs are usually easier to design using the object-oriented approach. With OOP in Java, you will find that programming is challenging to begin with, yet very easy and very rewarding once you master it... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Introduction-to-Object-Oriented-Programming-(OOP)/</guid>
		<link>http://e-articles.info/e/a/title/Introduction-to-Object-Oriented-Programming-(OOP)/</link>
        <pubDate>Thu, 03 Jan 2008 04:23:37 GMT</pubDate>
     </item>  
     <item>
        <title> Operator Precedence in programming languages</title>
        <description> Operator precedence deciphers the order in which   calculations in an expression occur. Looking at the calculation example 3 + 4 * 6, the answer could be calculated   by adding 3 and 4, which gives   7, and then multiplying 7 by   6, giving the answer of 42.   However, we could also multiply 4 and 6 first, which gives 24, and then   add on the 3, giving an answer of 27... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Operator-Precedence-in-programming-languages/</guid>
		<link>http://e-articles.info/e/a/title/Operator-Precedence-in-programming-languages/</link>
        <pubDate>Thu, 03 Jan 2008 05:31:42 GMT</pubDate>
     </item>  
     <item>
        <title> Arithmetic Assignment Operators</title>
        <description> The following assignment operators are similar to the   increment and decrement operators that we have just seen. They are used so that   you do not need to enter the source variable twice when assigning a value to a   variable based on its current value. The following table shows a list of   arithmetic assignment operators for the arithmetic operators:

    
      
        
          Operator
          Description
        
      
      
        
          *= 
          Multiplication assignment
        
        
          /= 
          Division assignment
        
        
          += 
          Addition assignment
        
        
          &amp;ndash;= 
          Subtraction assignment
        
        
          %= 
          Remainder assignment
        
      
    
    So we can set a value to a variable and then double its current   value as follows: 
  int number = 22;  
number *= 2;        
// all the fours, 44
  In fact, it is possible to assign values to variables using the   assignment operators wherever the value type is valid, even in mid-code, so to   speak... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Arithmetic-Assignment-Operators/</guid>
		<link>http://e-articles.info/e/a/title/Arithmetic-Assignment-Operators/</link>
        <pubDate>Thu, 03 Jan 2008 06:39:47 GMT</pubDate>
     </item>  
     <item>
        <title> Bitwise Operators</title>
        <description> The following table shows the standard bitwise operators in   Java and a description of them.

  
    
      
        Operator
        Description
      
    
    
      
        &amp;amp; 
        Bitwise AND
      
      
        | 
        Bitwise inclusive-OR (generally known as OR)
      
      
        ^ 
        Bitwise exclusive-OR (generally known as XOR)
      
      
        ~ 
        Bitwise NOT
      
    
  

To illustrate the function of these bitwise   operators, we can use two byte values, A and B, which in java could be represented by a variable of type   byte. The following table shows the binary notation of   A and B (as there are 8 bits   in a byte)... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Bitwise-Operators/</guid>
		<link>http://e-articles.info/e/a/title/Bitwise-Operators/</link>
        <pubDate>Thu, 03 Jan 2008 07:47:52 GMT</pubDate>
     </item>  
     <item>
        <title> Invocation Chaining</title>
        <description> Invocation chaining means that you are not limited to merely accessing one class/object member in a given statement with the . operator but may continue to access further members in a given statement. For example, let's say that we wanted to convert an integer value to a String object representation and then retrieve the first digit from the string as a character... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Invocation-Chaining/</guid>
		<link>http://e-articles.info/e/a/title/Invocation-Chaining/</link>
        <pubDate>Thu, 03 Jan 2008 08:55:57 GMT</pubDate>
     </item>  
     <item>
        <title> Regular Expressions in Java</title>
        <description> A regular expression is a code that is used to match a pattern in a given string and is new to Java 1.4. Regular expressions are made up of normal characters and metacharacters... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Regular-Expressions-in-Java/</guid>
		<link>http://e-articles.info/e/a/title/Regular-Expressions-in-Java/</link>
        <pubDate>Wed, 02 Jan 2008 09:23:15 GMT</pubDate>
     </item>  
     <item>
        <title> Character Escape Sequences</title>
        <description> Character escape sequences allow for a character to be   interpreted differently than its literal value. Character escape sequences are   defined using the backslash (\) character, followed by   the escape sequence code. The following table shows a list of character escape   sequences with a description of what they do... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Character-Escape-Sequences/</guid>
		<link>http://e-articles.info/e/a/title/Character-Escape-Sequences/</link>
        <pubDate>Sat, 29 Dec 2007 10:31:20 GMT</pubDate>
     </item>  
     <item>
        <title> Conditional Statements</title>
        <description> The ability to choose the path that your program takes,   based on any given data, is the key to all functionality in programming. In   order to create conditional statements, we must first learn about the relational   operators that we will use with these statements. The following table is a list   of the relational operators in Java... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Conditional-Statements/</guid>
		<link>http://e-articles.info/e/a/title/Conditional-Statements/</link>
        <pubDate>Sat, 29 Dec 2007 11:39:25 GMT</pubDate>
     </item>  
     <item>
        <title> Java Methods</title>
        <description> Methods are used as the building blocks of your program, performing tasks that can be called again and again and using the same code to perform the task each time. The basic but fundamental parts of a method's declaration are its name, its return type, parameter signature, and code segment curly brackets. The following lines of code are an example of a method declaration... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Java-Methods/</guid>
		<link>http://e-articles.info/e/a/title/Java-Methods/</link>
        <pubDate>Sat, 29 Dec 2007 12:47:30 GMT</pubDate>
     </item>  
     <item>
        <title> Variable Scope</title>
        <description> The scope of a variable is the area in which a variable belongs, specified by the area in which it is declared. The following example code contains two declared variables, one inside a code block and one outside of that code block (imagine that the code is entered into a method, like main for example). 
int outside = 10;
     
   {
   int inside = 5;
   // outside is valid inside this code block
   inside = outside;
   }
   
   outside = 5;
   // inside cannot be accessed here
The variable inside cannot be accessed anywhere outside the code block in which it was declared because it is out of the variable's scope... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Variable-Scope/</guid>
		<link>http://e-articles.info/e/a/title/Variable-Scope/</link>
        <pubDate>Sat, 29 Dec 2007 13:55:35 GMT</pubDate>
     </item>  
     <item>
        <title> What is a Java Package</title>
        <description> A Java package is a collection of   related classes that can be imported into your program to support your software.   They also provide namespace management, as well as access protection.
  
    
      
        
        Note
        :A namespace is the scope of the name of a variable... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/What-is-a-Java-Package/</guid>
		<link>http://e-articles.info/e/a/title/What-is-a-Java-Package/</link>
        <pubDate>Mon, 24 Dec 2007 14:23:40 GMT</pubDate>
     </item>  
     <item>
        <title> Importing Java Packages</title>
        <description> To use a package within a Java application or applet, we need to import it. We do this by means of the import keyword. So, for example, if we wish to include the I/O package, which is called java... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/Importing-Java-Packages/</guid>
		<link>http://e-articles.info/e/a/title/Importing-Java-Packages/</link>
        <pubDate>Wed, 12 Dec 2007 15:31:45 GMT</pubDate>
     </item>  
     <item>
        <title> ISO Management Elements in Java EE .NET Platforms</title>
        <description> In a heterogeneous application and platform environment, IT   managers are faced with different and often incompatible management frameworks. IT organizations often partition the   heterogeneous platforms into groups of application &quot;silos&quot;subsystems with a   common management infrastructure. Third-party products such as HP OpenView or CA   Unicenter provide management consoles that consolidate the platform-specific   management information and provide a common view of managed components... by Blerick Tawman</description>
        <guid>http://e-articles.info/e/a/title/ISO-Management-Elements-in-Java-EE-.NET-Platforms/</guid>
		<link>http://e-articles.info/e/a/title/ISO-Management-Elements-in-Java-EE-.NET-Platforms/</link>
        <pubDate>Wed, 28 Nov 2007 16:39:50 GMT</pubDate>
     </item>  
     <item>
        <title> Java EE Platform</title>
        <description> Java is a programming language. The Java EE Platform provides a runtime environment (also known as JRE or Java Runtime Environment) as well as a development kit (also known as JDK or Java Development Kit) for building applications in Java. There are a few variants of the platform:
Java Platform, Standard Edition (Java SE) is the core of Java technology used mostly for application development... by Blerick Tawman</description>
        <guid>http://e-articles.info/e/a/title/Java-EE-Platform/</guid>
		<link>http://e-articles.info/e/a/title/Java-EE-Platform/</link>
        <pubDate>Tue, 27 Nov 2007 17:47:55 GMT</pubDate>
     </item>  
     <item>
        <title> Java EE Architecture</title>
        <description> The Java EE application program interface (API) consists of a suite of technology components and services that are used to build enterprise applications. It includes components that may be used to build presentation and business logic, APIs for managing business transactions, security and infrastructure tools to support the application operating environment, and tools for both internal and external integration. The following is a list of major technologies provided by Java EE... by Blerick Tawman</description>
        <guid>http://e-articles.info/e/a/title/Java-EE-Architecture/</guid>
		<link>http://e-articles.info/e/a/title/Java-EE-Architecture/</link>
        <pubDate>Tue, 27 Nov 2007 18:55:15 GMT</pubDate>
     </item>  
     <item>
        <title> What are Java Listeners</title>
        <description> A listener in Java is an object that   is used to handle events. In effect, it is implemented to listen for events and   then tell the program the required information about that event, which you may   then handle. For example, if the player moves the mouse, a listener will alert   the program that the mouse has been moved and give details of its position,   relative to the component currently occupying that area of the screen... by Gabriela C. Perez</description>
        <guid>http://e-articles.info/e/a/title/What-are-Java-Listeners/</guid>
		<link>http://e-articles.info/e/a/title/What-are-Java-Listeners/</link>
        <pubDate>Sun, 02 Sep 2007 19:23:20 GMT</pubDate>
     </item>  
     <item>
        <title> Common Java Applet Problems</title>
        <description> This tutorial covers some common problems that you might   encounter when writing Java applets. After each problem there is a list of   possible solutions.
Problem: Applet Viewer says there is   no &amp;lt;APPLET&amp;gt; tag on my HTML page, but it really is   there... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/Common-Java-Applet-Problems/</guid>
		<link>http://e-articles.info/e/a/title/Common-Java-Applet-Problems/</link>
        <pubDate>Sun, 10 Dec 2006 20:31:25 GMT</pubDate>
     </item>  
     <item>
        <title> Benefits of the Java Collections Framework</title>
        <description> A collections  framework is a unified architecture for representing and manipulating  collections. All collections frameworks contain the following:
Interfaces These are abstract data types that represent collections. Interfaces allow  collections to be manipulated independently of the details of their  representation... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/Benefits-of-the-Java-Collections-Framework/</guid>
		<link>http://e-articles.info/e/a/title/Benefits-of-the-Java-Collections-Framework/</link>
        <pubDate>Sat, 09 Dec 2006 21:39:30 GMT</pubDate>
     </item>  
     <item>
        <title> What Is Swing</title>
        <description> To create a Java program with a graphical user interface (GUI),   you'll want to learn about Swing.
The Swing toolkit includes a rich set of components for   building GUIs and adding interactivity to Java applications. Swing includes all   the components you would expect from a modern toolkit: table controls, list   controls, tree controls, buttons, and labels... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/What-Is-Swing/</guid>
		<link>http://e-articles.info/e/a/title/What-Is-Swing/</link>
        <pubDate>Fri, 08 Dec 2006 22:47:35 GMT</pubDate>
     </item>  
     <item>
        <title> How to create view extract and update a JAR file archive</title>
        <description> Creating a JAR File
The basic format of the command for creating a JAR file is:
jar cf jar-file input-file(s)
The options and arguments used in this command are:

  The c  option indicates that you want to create a JAR  file.
  The f  option indicates that you want the output to go to a file  rather than to stdout.
  jar-file  is the name that you want the resulting JAR file to have... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/How-to-create-view-extract-and-update-a-JAR-file-archive/</guid>
		<link>http://e-articles.info/e/a/title/How-to-create-view-extract-and-update-a-JAR-file-archive/</link>
        <pubDate>Wed, 06 Dec 2006 23:55:40 GMT</pubDate>
     </item>  
     <item>
        <title> Steps to follow when writing a custom implementation</title>
        <description> The process of writing a custom  implementation follows:
1.&amp;nbsp;  Choose the appropriate abstract implementation class from the preceding  list.
  &amp;nbsp;
  2... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/Steps-to-follow-when-writing-a-custom-implementation/</guid>
		<link>http://e-articles.info/e/a/title/Steps-to-follow-when-writing-a-custom-implementation/</link>
        <pubDate>Mon, 04 Dec 2006 01:23:45 GMT</pubDate>
     </item>  
     <item>
        <title> Processes and Threads in Java programming language</title>
        <description> In concurrent programming, there are two basic units of   execution: processes and threads. In the Java programming language, concurrent   programming is mostly concerned with threads. However, processes are also   important... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/Processes-and-Threads-in-Java-programming-language/</guid>
		<link>http://e-articles.info/e/a/title/Processes-and-Threads-in-Java-programming-language/</link>
        <pubDate>Wed, 29 Nov 2006 02:31:50 GMT</pubDate>
     </item>  
     <item>
        <title> What Is a Java Object ~ Advantages of bundling code into individual software objects</title>
        <description> Objects are key to understanding object-oriented technology. Look around right now and   you'll find many examples of real-world objects: your dog, your desk, your   television set, your bicycle.
Real-world objects share two characteristics: They all have   state and behavior... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/What-Is-a-Java-Object-~-Advantages-of-bundling-code-into-individual-software-objects/</guid>
		<link>http://e-articles.info/e/a/title/What-Is-a-Java-Object-~-Advantages-of-bundling-code-into-individual-software-objects/</link>
        <pubDate>Sat, 25 Nov 2006 03:39:55 GMT</pubDate>
     </item>  
     <item>
        <title> How to create a JAR File</title>
        <description> The basic format of the command for creating a JAR file is:

  jar cf jar-file input-file(s)


The options and arguments used in this command are:

  
    The c option indicates that you want to create a JAR file.
  
    The f option indicates that you want the output to go   to a file rather than to stdout.
  
    jar-file is the name that you want the resulting JAR   file to have... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/How-to-create-a-JAR-File/</guid>
		<link>http://e-articles.info/e/a/title/How-to-create-a-JAR-File/</link>
        <pubDate>Thu, 23 Nov 2006 04:47:15 GMT</pubDate>
     </item>  
     <item>
        <title> How to use the PATH and CLASSPATH environment variables on Windows Solaris and Linux</title>
        <description> This section explains how to use the PATH and   CLASSPATH environment variables on Microsoft Windows, Solaris, and   Linux. Consult the installation instructions included with your   installation of the Java Development Kit (JDK) software bundle for current   information.
After installing the software, in the JDK directory, the   bin directory contains both the compiler and the launcher... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/How-to-use-the-PATH-and-CLASSPATH-environment-variables-on-Windows-Solaris-and-Linux/</guid>
		<link>http://e-articles.info/e/a/title/How-to-use-the-PATH-and-CLASSPATH-environment-variables-on-Windows-Solaris-and-Linux/</link>
        <pubDate>Wed, 22 Nov 2006 05:55:20 GMT</pubDate>
     </item>  
     <item>
        <title> Reasons to Write a Custom Collection Implementation in JAVA</title>
        <description> Many programmers will never need to implement their own   Collections classes. Someday you might   want to write your own implementation. It is fairly easy to do this with the aid   of the abstract implementations provided by the Java platform... by Mike Kremilen</description>
        <guid>http://e-articles.info/e/a/title/Reasons-to-Write-a-Custom-Collection-Implementation-in-JAVA/</guid>
		<link>http://e-articles.info/e/a/title/Reasons-to-Write-a-Custom-Collection-Implementation-in-JAVA/</link>
        <pubDate>Wed, 22 Nov 2006 06:23:25 GMT</pubDate>
     </item>  
     <item>
        <title> The Three Kinds of Exceptions in Java applications</title>
        <description> An exception is an event, which   occurs during the execution of a program, that disrupts the normal flow of the   program's instructions.
When an error occurs within a method, the method creates an   object and hands it off to the runtime system. The object, called an exception object, contains information about the error,   including its type and the state of the program when the error occurred... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/The-Three-Kinds-of-Exceptions-in-Java-applications/</guid>
		<link>http://e-articles.info/e/a/title/The-Three-Kinds-of-Exceptions-in-Java-applications/</link>
        <pubDate>Tue, 07 Nov 2006 07:31:30 GMT</pubDate>
     </item>  
     <item>
        <title> A Strategy for Defining Immutable Objects in a Java application</title>
        <description> The following rules define a simple  strategy for creating immutable objects. Not all classes documented as  &amp;quot;immutable&amp;quot; follow these rules. This does not necessarily mean the  creators of these classes were sloppy they may have good reason for believing  that instances of their classes never change after construction... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/A-Strategy-for-Defining-Immutable-Objects-in-a-Java-application/</guid>
		<link>http://e-articles.info/e/a/title/A-Strategy-for-Defining-Immutable-Objects-in-a-Java-application/</link>
        <pubDate>Tue, 24 Oct 2006 08:39:35 GMT</pubDate>
     </item>  
     <item>
        <title> What should you know before you ship your Java applet ~ The perfectly finished applet</title>
        <description> Stop! Before you let the whole world know about your applet, make sure the answer to all of the following questions is yes:
1. Have you removed or disabled debugging output?
    
  Debugging output (generally created with System.out... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/What-should-you-know-before-you-ship-your-Java-applet-~-The-perfectly-finished-applet/</guid>
		<link>http://e-articles.info/e/a/title/What-should-you-know-before-you-ship-your-Java-applet-~-The-perfectly-finished-applet/</link>
        <pubDate>Fri, 18 Aug 2006 09:47:40 GMT</pubDate>
     </item>  
     <item>
        <title> Deploying Java Applets in a Mixed Browser Environment</title>
        <description> You can deploy applets for users of both Internet Explorer and the Mozilla family of browsers in one of two ways:
Through pure HTML
  Through JavaScript
Using Pure HTML
When using a pure HTML approach to deploy applets in a mixed-browser environment, note the following:
1. Internet Explorer

  Recognizes the object tag
    Ignores the contents of the comment tag

2. Mozilla browsers 

   Ignore an object tag with the classid attribute
    Interpret the contents of the comment tag

Consider the following example code from an HTML page:
&amp;lt;object classid=&amp;quot;clsid:CAFEEFAC-0016-0000-0000-ABCDEFFEDCBA&amp;quot;
&amp;lt;param name=&amp;quot;code&amp;quot; value=&amp;quot;Applet1... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/Deploying-Java-Applets-in-a-Mixed-Browser-Environment/</guid>
		<link>http://e-articles.info/e/a/title/Deploying-Java-Applets-in-a-Mixed-Browser-Environment/</link>
        <pubDate>Wed, 09 Aug 2006 10:55:45 GMT</pubDate>
     </item>  
     <item>
        <title> General Java Applet Deployment Considerations</title>
        <description> How you deploy an applet depends on whether users access the   Web page through the Internet or an Intranet, and the type of browser they use.   Note this information about your users, then follow the general guidelines   below.
Deploying Applets on the Internet   versus an Intranet
When deploying applets:

  
    Use the applet tag if the Web page is accessed through   the Internet or if it is accessed through an Intranet in which people use   different browsers... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/General-Java-Applet-Deployment-Considerations/</guid>
		<link>http://e-articles.info/e/a/title/General-Java-Applet-Deployment-Considerations/</link>
        <pubDate>Fri, 04 Aug 2006 11:23:50 GMT</pubDate>
     </item>  
     <item>
        <title> Advantages of exceptions in Java programming language</title>
        <description> An exception is an event, which occurs during the   execution of a program, that disrupts the normal flow of the program's   instructions. 
Advantage 1: Separating Error-Handling Code from &amp;quot;Regular&amp;quot; Code
Exceptions provide the means to separate the details of what to do when something out of the ordinary happens from the main logic of a program. In traditional programming, error detection, reporting, and handling often lead to confusing spaghetti code... by Clain Brand</description>
        <guid>http://e-articles.info/e/a/title/Advantages-of-exceptions-in-Java-programming-language/</guid>
		<link>http://e-articles.info/e/a/title/Advantages-of-exceptions-in-Java-programming-language/</link>
        <pubDate>Sun, 30 Jul 2006 12:31:55 GMT</pubDate>
     </item>  
  
</channel>
</rss>
