Java

Java is a very popular programming language for developing different scale applications. Java can be used to develop various different kind of applications i.e.; a desktop application, mobile application, web application etc.

Java is an object oriented programming language developed by Sun Microsystems in 1995.

Learn more about Java evolution

Parsing XML with Java and XPath

XML is the best technique to represent data in a structural format. Reading the data from XML is called Parsing. As a developer, you should know XML parsing.Have you heard about XPath? XPath is an ex...

Regular expression processing with Java

Regular expression is constructed with characters and special symbols to compare a string. This is written in a formal language which can be parsed by regular expression parser. The method matches() compares the string with regular expression in Java

Important packages in core Java

I'm going to explain about few important packages in core Java.1. java.lang: This package got primary classes and interfaces essential for Java program. It consists of wrapper classes (wrapper classes...

Java naming conventions

Hi guys - I'm going to talk about naming conventions to be followed by a programmer as per the Sun specification.Naming conventions: The rules to be followed while writing the names.1. Package names i...

Java prime number program

What is prime numberA number is called as a prime if it has only two divisors. In other words, a number which is divided only by 1 and itself. i.e.; number of factors for a prime number should only be...

JDBC ResultSet object types

There're different types of ResultSet behaviors implemented by Javasoft. And here the list of different behaviors available for ResultSet objectForward only ResultSetScroll insensitive ResultSetScroll...