Skip to main content

Posts

Showing posts with the label Java Projects

College Project Approval System - Java Project

College Project Approval System - Java Project Project Details Project Code JWI174 Title College Project Approval System - Java Project Project Type Java Web Application (JSP) Front End NetBeans Back End MySQL ollege Project Management System Abstract Academic Project management is a major issue which is faced by many educational institutes in India, the main reason for this is there is no automated system followed in any institute. College management/staff gathers all the project reports and project sources from students and store them physically in some locations probably libraries. To overcome this practical problem and also to make the process easy we developed a secured  intranet  application which is useful for each and every institute.  The application should allow the student to login and upload/enter all his details regarding project such as project abstract, White papers, SRS, PPTs, Sources etc…. All this details must be maintained in da...

Online Courier Management System

Online Courier Management System is a Windows-based solution specifically designed for the courier and parcel delivery industries. Courier Management System automates the in-field courier process such as, inbound and outbound airway bills, delivery run sheets, accounts receivable and real-time courier tracking. This is the student project developed in Core JAVA. Project Name : Online Courier Management System The web-enabled interface allows the user to login from anywhere in the world, and track their courier and also view the customer rate chart. The system is designed to integrate with Financial Accounting, to eliminate duplication of data entry and is also scalable to grow along with your company. The system is built with very user-friendly screens and is rich in functionality and features and maintains a high level of data integrity. Software used: We have used following software’s to develop this application. 1. Programming Language : JAVA 2. Database : Microsoft Ac...

JAVA based Hospital Management System

The main aim of developing this JAVA based Hospital Management System project is to provide better hospital management services to both the doctors as well as patients.  This Java based Hospital Management System will store all patients record and doctors details and it view patients bill. It can be used in any Hospital, Clinic, Polyclinic or Pathology labs for maintaining patient details and their test results. This article contains Hospital Management System source code in java, database files and documentation. Project title: JAVA based Hospital Management System Technologies to be used This project is developed in JAVA having MsAccess database as backend. Database Design (Ms Access) Form Design (JAVA Programming) Coding (JAVA Programming) Testing (JAVA Programming) About JAVA Java is an object oriented programming language developed by Sun Microsystems, Inc. in 1991. Java has become the widely used programming language for the internet. ...

Stores Management System

The Stores Management System creates a web based manufacturing system that enables a manufacturing industry to schedule its manufacturing operations based on the daily update of sales from its dealers. Once the sales figures of items for the past week are entered by the dealers over the internet along with the orders for the next delivery, the schedule for the next week’s production will be drawn up. A report of the required raw materials or parts will be drawn up with the product requirements over the internet & asked to quote their rates. Once the rates are quoted, the order will be placed with the required delivery schedules. Once the parts the parts are supplied the stocks will be updated. Then a production plan will be drawn up taking the bill of materials into consideration. Once the production plan is approved, the stock will be updated when the material is issued. Once the finished products are available the delivery schedules will be drawn up based on the orders ...

Hand Written Pattern Recognition System

Hand Written Pattern Recognition System, this project aims to develop software which will detect handwritten character in an applet. Hand Written Pattern Recognition can be accessed throughout an organization. The application is basically confined to English language. The software will be developed using Neural network concepts. This application will dynamically detect the character. Project title: Hand Written Pattern Recognition System Software Requirements: Java 1.4 or More Swings Windows 98  Hardware Requirements: Processor                     :           Pentium IV 2.6 GHz RAM                           :           512 MB Monitor...

Library management system project in JAVA

The main objective of the Library Management system project is discipline of the planning, organizing and managing the library tasks. Our project aims at making the task of library easy. Library Management is entering the records of new book and retrieving the details of book available in the library. We can issue book to the library member and maintain their records and can also checks how many book are issued and stock available in the library. In the project we can maintain the late fine of library member who return the issued book after the due date. This Library management system project in JAVA and MS SQL server. Project title: Library management system / Library management system project in JAVA Project category : RDBMS Language and software tool used : Front End : Java Operating System : Window 7 Back End : Microsoft SQL Server 2005 Structure of the project: Proposed System: In the proposed system, we assume that each member will be having a ...

Hospital Management System in JAVA

This main objective of the Hospital Management System is to computerize the maintenance of the patient details and billing section in the hospital. This system has been developed to form whole management system including Employees, Doctors, Nurses, Patients, Bills, and Complains etc. It also includes the details about the laboratory checkups. LANGUAGE AND SOFTWARE TOOL USED : Front End: Java Operating System: Windows XP Back End: SQL SERVER 2005 STRUCTURE OF THE PROJECT: Proposed System:- In the proposed system, the administrator can insert, delete and modify the patient records as per the requirements. The laboratory reports and billing details can be easily maintained in this system. This project will help to smoother the process of the hospital activities. Module Description Administration Module:- This is the main module in the proposed project. The administrator can read and write information about any member such as patient, doctors and staff of the ho...

GSM Based Remote Monitoring and Billing System

The idea of the developing the GSM Based Remote Monitoring and Billing System is to provide support for the new post-paid meters, managed remotely by SMS based on GSM, having dual digital display, by LED and numerical wheel display. This application also provides a facility for the customers like online bill payment. It is particularly applicable for developing and underdeveloped countries where such a post-payment solution may be desirable. It can solve all the standard business problems existing in operation and maintenance of utilities that use a post payment system. Our current system provides communication only through SMS messages. Later if we want we can use emails etc for communication. Project Title: GSM Based Remote Monitoring and Billing Software Requirements : Programming Language           :         Java Web Applications      ...

Stopwatch code in JAVA

import java.awt.*; import java.awt.event.*; import javax.swing.*; public class StopWatch extends JPanel { private Timer myTimer1; public static final int ONE_SEC = 1000; //time step in milliseconds public static final int TENTH_SEC = 100; private Font myClockFont; private JButton startBtn, stopBtn, resetBtn; private JLabel timeLbl; private JPanel topPanel, bottomPanel; private int clockTick; //number of clock ticks; tick can be 1.0 s or 0.1 s private double clockTime; //time in seconds private String clockTimeString; public StopWatch() { clockTick = 0; //initial clock setting in clock ticks clockTime = ((double)clockTick)/10.0; clockTimeString = new Double(clockTime).toString(); myClockFont = new Font(“Serif”, Font.PLAIN, 50); timeLbl = new JLabel(); timeLbl.setFont(myClockFont); timeLbl.setText(clockTimeStrin g); startBtn = new JButton(“Start”); stopBtn = new JButton(“Stop”); resetBtn = new JButton(“Reset”); myTimer1 = new Timer(TENTH_SEC, new ActionListener() { ...