<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6.2" -->
<rss version="0.92">
<channel>
	<title>Faisal Java Developer and SEO Geek Blog</title>
	<link>http://www.faisalgeek.com/blog</link>
	<description>My Search Engine Marketing Research Blog</description>
	<lastBuildDate>Sun, 07 Sep 2008 16:20:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Java Generating Prime Number</title>
		<description><![CDATA[/*
This class check the prime number between 1 to 1000 and write the prime number.
*/
public class PrimeNumber
{
// This method tests whether a given number is prime or not.
public static boolean isPrime ( int num )
{
boolean prime = true;
int limit = (int) Math.sqrt ( num );
for ( int i = 2; i &#60;= limit; i++ )
{
if [...]]]></description>
		<link>http://www.faisalgeek.com/blog/java-generating-prime-number/</link>
			</item>
	<item>
		<title>Java JDBC with using Oracle</title>
		<description><![CDATA[



 
The JDBC is used whenever a Java application should communicate with a relational database for which a JDBC driver exists. JDBC is part of the Java platform standard; all visible classes and interfaces used in the JDBC are placed in package Java 
Main JDBC classes:
Download the Java connecting with Oracle Code, you have to [...]]]></description>
		<link>http://www.faisalgeek.com/blog/java-jdbc-with-using-oracle/</link>
			</item>
	<item>
		<title>Java creating custom Exceptions</title>
		<description><![CDATA[Java supports the custom, user defined exception. Java provides the well known and common exception classes and gives freedom for developer to create their own exception classes matching to their specific business logic/role. For example, a user not found exception would be implemented by its own.
Download the Java Source code  for creating user custom exceptions
MyException.java  [...]]]></description>
		<link>http://www.faisalgeek.com/blog/java-creating-custom-exceptions/</link>
			</item>
	<item>
		<title>Java Object Serialization by using Java I/O Streams</title>
		<description><![CDATA[The task is to store different objects of classes in a physically located file on hard disk. For this to store objects and their states (including the values of their data members) we have to make those classes serializeable. Use Standard Java I/O streams FileOutputStream, ObjectOutputStream to write/store to file and FileInputStream, ObjectInputStream streams to [...]]]></description>
		<link>http://www.faisalgeek.com/blog/java-object-serialization-by-using-java-io-streams/</link>
			</item>
	<item>
		<title>MySQL Server 5.x Installation problem for Windows Vista</title>
		<description><![CDATA[MySQL side-by-side error fixing while Running Instance Configuration Wizard



To install MySQL Server 5.0 in Windows Vista 

Disable the UAC in Windows Control Panel-&#62;User Accounts (See the screen shot below)
Windows Vista UAC turn off
Run the MySQL setup i.e. Use mysql-essential-5.0.51a-win32.msi
In the final step uncheck &#8220;Configure MySQL Server now&#8221;
Download and run Resource Hacker http://www.angusj.com/resourcehacker/
Open &#8230;\MySQL Server 5.0\bin\MySQLInstanceConfig.exe [...]]]></description>
		<link>http://www.faisalgeek.com/blog/mysql-server-5x-installation-problem-for-windows-vista/</link>
			</item>
	<item>
		<title>Understanding Exceptions in Java</title>
		<description><![CDATA[An exception is an error that happens when an application is running. When an exception condition happens, the exception is said to be thrown, and it changes the normal execution control flow of the program. Java offers a very comprehensive and flexible system for exception handling. The main benefit of such a system is that [...]]]></description>
		<link>http://www.faisalgeek.com/blog/understanding-exceptions-in-java/</link>
			</item>
	<item>
		<title>Composition and Aggregation using Java</title>
		<description><![CDATA[There is always been confusion about composition and aggregation. While in servicing NetSol Technologies, I came to learn practically what is composition and aggregation. First thing is both are type of association.  Below is the exact definition of each term and then practical Java code, where you can understand exactly how can we implement composition [...]]]></description>
		<link>http://www.faisalgeek.com/blog/composition-and-aggregation-using-java/</link>
			</item>
	<item>
		<title>My NetSol Joining as Apprentice Software Engineer</title>
		<description><![CDATA[This is my pleasure, luck and great blessings of Allah that I got such a golden chance to join NetSol as my career first Job. I will discuss here, how I go through this process and join the NetSol.
I have finished my BIT(Hos) degree from Punjab University, Lahore in March 2008. Then after that i [...]]]></description>
		<link>http://www.faisalgeek.com/blog/my-netsol-joining-as-apprentice-software-engineer/</link>
			</item>
	<item>
		<title>How to Take Screenshots in Java</title>
		<description><![CDATA[Have you ever wanted to grab a screenshot from your Java application? Here&#8217;s a quick tutorial on how to grab a screenshot and save it to a JPEG and PNG file. This shows how to use the Robot class to capture the screen image and the ImageIO API to save it as a JPG and [...]]]></description>
		<link>http://www.faisalgeek.com/blog/how-to-take-screenshots-in-java/</link>
			</item>
	<item>
		<title>Java Buzzwords</title>
		<description><![CDATA[You will hear and see quite a few Java buzzwords in the Java world. It&#8217;s important to know the Java buzzwords because they represent the factors that have played important roles in shaping the Java language. These words are summarized in Table 1-3.



Buzzword


Description



Architecture neutral 
The Java compiler   compiles the source code into bytecode, [...]]]></description>
		<link>http://www.faisalgeek.com/blog/21/</link>
			</item>
</channel>
</rss>
