Java Projects
Payroll System Java Project
Payroll System Java Project
Applet Text Editor
Developing Applet To edit text
import java.awt.*;
import java.applet.Applet;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
public class ffinal extends Applet implements ItemListener
{
TextArea text;
Checkbox cbold,citalic;
Choice fname,fsize;
public void init()
{
text=new TextArea(“Sample Text”);
cbold=new Checkbox(“bold”);
citalic=new Checkbox(“italic”);
fname=new Choice();
fsize=new Choice();
fname.add(“Monospaced”);
fname.add(“Arial”);
fname.add(“Serif”);
fname.add(“courier”);
fsize.add(“10”);
fsize.add(“15”);
fsize.add(“20”);
fsize.add(“25”);
fsize.add(“30”);
fsize.add(“60”);
add(text);
add(cbold);
add(citalic);
add(fsize);
add(fname);
cbold.addItemListener(this);
citalic.addItemListener(this);
fsize.addItemListener(this);
fname.addItemListener(this);
}
public void itemStateChanged(ItemEvent itemevent)
{
int var=0;
if(cbold.getState())
var=1;
if(citalic.getState())
var=2;
if(cbold.getState()&&citalic.getState())
var=3;
text.setFont(new Font(fname.getSelectedItem(),var,Integer.parseInt(fsize.getSelectedItem())));
}
}
Lan Chat and File Sharing Java Project
Lan Chat and File Sharing Java Project
LAN CHAT AND FILE SHARING AP Java Project
LAN chat application is one of easiest way to chat with a your friends through LAN. No internet connection is needed. The only thing which requires is server IP address and you will be able to connect to others members through LAN . It can help you to talk to your friends even you both do not have internet connection. As it is based on LAN. LAN i.e. local area network which connect different client to each other and also client to main server. So we have used the same concept here we are connecting two client or client and server with each other and by providing the IP address we can talk with each other.
Virtual Classroom Java Project
Virtual Classroom Java Project
The Virtual Classroom is a collaborative teaching tool to assist the students to learn in an interactive manner. It aims to complement the efforts of teachers to integrate technology into their classrooms and link the students to the Internet in educationally productive ways and provide them a stimulating, positive and enjoyable environment to study.
It contains the following elements:-
1. Student Login:
It enables a person to login as a student or sign up if he/she has not registered for the classroom.
Once logged in a student has the following features:-
a) Edit Profile:
It allows modifying the details
b) Study Material & Video Lectures:
It displays a list of ppts & interactive video lessons categorized by subjects as posted by the faculty
c) Ask doubts:
It enables the students to ask questions
d) Answers:
It shows the answers by the teachers to the questions asked by various students
2. Faculty Login:
It enables a person to login as a faculty member or sign up if he/she has not registered for the classroom.
Once logged in a faculty member has the following features:-
a) Edit Profile:
It allows modifying the details
b) Study Material & Video Lectures:
It allows the faculty members to post & remove ppts & video lessons c) Doubts:
It shows all the questions asked by the students
d) Answers:
It enables teachers to answer the questions asked by the students
3. Administrator Login
The administrator is the ultimate controller of the application with the highest authority.
He/she has the following features:-
a)Student/Faculty:
It displays a list of students/faculty members registered for the classroom
b)Student/Faculty req:
It displays a list of students/faculty members whose sign up request is still pending
c)PPT (pload/del)/Video(upload/del):
It displays a list of ppts & videos posted by the faculty members. The administrator has the power to remove ppts/videos from the list and upload according to wish
d)Question/Ans
It displays a list of questions asked by students/answers to questions by teachers. The administrator has the power to delete questions/answers from the list.
Alumini Database Java Project
ALUMINI DATABASE
OVERVIEW OF THE PROJECT
SYSTEM DECRIPTION:
The proposed system is for making easier to manage the rapidly growing database of our college. So this system will be developed for helping the college administration manage the database and maintain communication with the alumni’s. The overall system is controlled through the main menu.
The main menu contains 6 parts.
1.User Login
2.About Us
3.Alumni Directory
4.News and Updates
5.Discussion Forum
6.Contact Us
User Login:-
This page is used for user authentication.
- Valid Login:- If the user provides correct username and password he is directed to his profile. On successful login the user is given full access to the website.
- Forgot Password:-The User can use this redirected page to recover his password.
- New User:-Redirects to a page which adds a user to the database. New alumni can use this page to access various features of the website.
Project Report Download