Java Working
Java Working
2024-2025
SUBMITTED BY
GUIDANCE BY
A. S. Gaikwad
1
Index
Sr. Topic Page No.
No.
01 Certificate 03
02 Submission 04
03 Acknowledgement 05
Part–A
1. Aim
04 06-07
2. Course OutCome
3. Proposed Methodology
4. Report of the MicroProject
5. Action Plan
4. Resource Required
Part–B
05 1. Rationale 08-15
2. Aim of microproject
3. Course outcome Addressed
4. Literature Review
5. Actual methodology Followed
6. Actual resourced used
7. Outputs of Microproject
8. Skilled Developed outcome
of the Microproject
2
GOVERNMENT POLYTECHNIC, GADCHIROLI
DEPARTMENT OF COMPUTER
ENGINEERING
CERTIFICATE
This is to certify that the following students of this institute have carried out this
microproject work on “ALUMNI STUDENT CONNECT APPLICATION”
under the guidance of Mr. A. S. Gaikwad lecture in Computer during the session
2024-25. This work has been done in the partial fulfilment of the award for in
Computer Engineering from Maharashtra State Board of Technical Education,
Mumbai.
SUBMITTED BY
Dr. A. B. Borade
Principle
Govt. Poly. Gadchiroli
3
GOVERNMENT POLYTECHNIC, GADCHIROLI
DEPARTMENT OF COMPUTER
ENGINEERING
SUBMISSION
We, the students of second year of Department of Computer Engineering,
humbly completed this Micro-project work on “ALUMNI STUDENT
CONNECT APPLICATION for time to time as described in This report by
our own skill and study between the periods from 2024-25.
4
GOVERNMENT POLYTECHNIC, GADCHIROLI
DEPARTMENT OF COMPUTER
ENGINEERING
ACKNOWLEDGEMENT
At the most we express our deep sence of gratitude and respect to our Guide
Mr. A. S. Gaikwad , Lecturer in computer, Government Polytechnic, Gadchiroli. We are
very much grateful to him for the expertise and guidance we are have received from him
while working on this Microproject.
We would like to extend our thanks to Mr. J. M. Meshram Head of Department and
Mr. A. S. Gaikwad Mentor and lecturer in Computer For his encouragement, support and
guidance. We are also grateful to our Principle Dr. A. B. Borade, for encouraging us from
time to time.
We also extend our thanks to all lecturer and other staff of Department for
their co-operation and kind help the Microproject. Last but not least, we are
thankful to all those who have directly and indirectly help us in completion of
these project work.
5
Part–A
Micro-Project Proposal
I Collected data from advance Java Programming Book to get more information
about Micro-Project topic and to know recourses.
Sr. Name of
No. Resource/material Specifications Qty Remarks
7
Part-B
1.0 Rationale
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
class Student {
String name, email, course, fee, address, city, state, country, contactNumber;
Student(String name, String email, String course, String fee, String address,
String city, String state, String country, String contactNumber) {
this.name = name;
8
this.email = email;
this.course = course;
this.fee = fee;
this.address = address;
this.city = city;
this.state = state;
this.country = country;
this.contactNumber = contactNumber;
}
}
public AlumniStudentConnectApp() {
studentList = new ArrayList<>();
setTitle("Alumni and Student Connect");
setSize(700, 700);
setDefaultCloseOperation(EXIT_ON_CLOSE);
cardLayout = new CardLayout();
mainPanel = new JPanel(cardLayout);
homePanel.add(alumniButton);
homePanel.add(studentButton);
mainPanel.add(homePanel, "Home");
9
studentPanel = new JPanel();
studentPanel.setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.HORIZONTAL;
10
mainPanel.add(studentPanel, "Student");
mainPanel.add(viewDataPanel, "ViewData");
add(mainPanel);
cardLayout.show(mainPanel, "Home");
}
11
student.state,
student.country,
student.contactNumber
};
tableModel.addRow(rowData);
}
}
12
JOptionPane.showMessageDialog(null, "Please fill in all fields!");
}
}
}
Sr. Name of
No. Resource/material Specifications Qty Remarks
13
7.0 Outputs of Microproject
14
8.0 Skills Developed/Learning outcomes of this micro project
15
16