Tutorials news

You can find here Core Java Tutorial, JDBC Tutorial, Servlet Tutorial, JSP Tutorial, Struts Tutorial, Hibenate and IBatis Tutorials source code, Java tutorials and other Tutorials.

How to Develop Game Application using Java Swing

This aricle describe the deatails about How to develop gaming application using Java Swing code. Developing a Game application using Java Swing is really possible one. When you develop some games using C language it is some what difficult also we should be good in some graphics r Read More..

RequestDispatcher in Servlet with Example

The RequestDispatcher object is used to send a client request to any resource  on the server Such a resource may be dynamic (e.g. a Servlet or a JSP file) or static (e.g. a HTML document) To send a request from resource x  to resource y,  we need to create RequestDispatcher Read More..

Online Project Management Project Concept

Create a complete, web-based enterprise project management application that helps organizations plan, execute and deliver on their entire portfolio of projects. A. Project participants B. Project Coordinators/Visitors C. Company/Others Functionality: 1. It must include a homepage Read More..

Session Tracking Mechanism in Java

HTTP is a stateless protocol – All by itself, a request will not tell the server which client is making the request. When it gets a page request, it has no memory of any  previous requests from the same client. This treats as different user. In some cases, a Servlet may Read More..

Insurance Agent Samurai Project Concept

The Insurance Agent Samurai is a major component in the electronic Systems of Insurance Companies. The Insurance agent’s Samurai is the system meant for insurance agent that helps to automated most of the functionalities in the insurance policy related activities. This system s Read More..

Criminal Detention Portal Project Concept

This project is aimed at developing a Criminal Detention Portal that is a collection of registers and reports for the effective management of prisons. Besides this police and government officials can see crime/criminals reports for their purpose. Functionalities: 1.  Case regist Read More..

Grievence Handling System Project Concept

Functionalities: 1. Admin Services – The Admin Services are some common services like User Authentication, User-Service-Role Mapping and User Management 2. Grievence handling and status reporting to employee 3.  Griveance Manager should resolve the complaint raised by Empl Read More..

Point Of Sale (POS) Project Concept

This project is a very popular and widely used in many big supermarket / departmental stores and is used to cater the need of the sales system there. This is an online system and is used maintain / control most of the activities happening in big stores. Functionalities: 1. Basica Read More..

Pedantry System Project Concept

This project is aimed at developing an online intranet knowledge mgmt system that is of importance to either an organisation or a college. The Pedantry system  is an Intranet based application that can be accessed throughout the organisation or a specified group/Dept. This syste Read More..

NTT Banking System Project Concept

This project was developed for NTT Data. The project contains modules namely Registration module, Deposit module, Loan module and Daybook module. I have involved in registration module. The Registration module caters to registered shareholder information, deposit module maintains Read More..

Trade Port Project Concept

Trade Port is a multi-exchange, integrated cash and derivatives order management, order routing and risk management system for brokerage houses and stock exchange intermediaries. Trade Port consists of two front-end applications – TradePort Control Workstation (CWS), Trade Read More..

Trade Flow Manager (TFM) Project Concept

Trade Flow Manager is a system, which validates and enriches the trades that come from various sources. It also checks if an approval is required for the trade. Approval or Rejection can be done through a UI Screen. This system comes into picture before comparison and Reconciliat Read More..

Defect Tracker and Analysier Project Concept

Functionality: Following three tasks can be performed with the application : 1) User Maintenance: Creating, Granting  access and Deleting users from application. This should be done by admin. (2) Component Maintenance : Creating a component (application being developed / enhance Read More..

Interface Example Program in Java

Interface Example Program in Java. You can find Interface Example Program (code snippets) in this page. interface Shape{ void draw(); } class Rectangle implements Shape{ public void draw(){ System.out.println(“Drawing Rectangle”); } } class InterfaceDemo{ public stati Read More..

Constructor in java and Use of this keyword in Java

In this tutorial you will learn about how to use Constructor in java and Use of this keyword in Java.Constructors
A constructor is a special method that is called to create a new object.
PolicyHolder policyHolder = new PolicyHolder();
It is not mandatory for the coder to write a constructor for the class.