How to change the port number of the Tomcat Server

Sometimes developers might facing server problems like “Several ports (8005, 8080, 8009) required by Tomcat v6.0 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop …

Read More »

MIME – Multi Purpose Internet Mail Extension

A MIME stands for Multipurpose Internet Mail Extension. In the context of internet or web applications the way of identifying files according to their nature and format. While developing the web applications specify content-type in the header part of HTTP – response. A MIME type is a mechanism that can …

Read More »

First Java Program

Java Program – Basic Syntax: public class ClassName { public static void main(String args[]){ Variables; Statements; } } First Java Program: public class FirstJavaProgram { /* This is my first java program. * This will print ‘Hello World’ as the output */ public static void main(String []args) { System.out.println(“Welcome to …

Read More »

Features Of Java Programming

Java Features or Buzz Words: 1. Simple 2. Secure 3.Portable 4.Object-oriented 5.Robust 6.Multithreaded 7.Architecture-neutral 8.Interpreted 9.High performance 10.Distributed 11.Dynamic We discuss about these words how java supported. Simple: java is simple to write program and easy to learn if you understand the basics of OOP. Because it was acquire some …

Read More »