A Mini Project Report java (2)
A Mini Project Report java (2)
On
ID Card Generator
Submitted to the SVERI’s College of Engineering,
Pandharpur
In fulfilment of requirements for the award of
degree
Bachelor of Technology
In
Computer Science and Engineering by
PRN NO. Roll No. Name Sign
A55 Ghule Shreyash Balaji
A59 Jadhav Ranveer Pradip
A79 Waydande Tejas Ravindra
PANDHARPUR
ACADEMIC YEAR:2023-24
DEPARTMENT OF COMPUTER SCIENCE &
ENGINEERING
SVERI’S COLLEGE of ENGINEERING
PANDHARPUR
2023 - 2024
CERTIFICATE
DECLARATION
We A55 Ghule Shreyash Balaji, A59 Jadhav Ranveer Pradip,
A79 Waydande Tejas Ravindra hereby declare that the seminar
report ID Card Generator , submitted for partial fulfilment of the
requirements for the award of degree of Bachelor of Technology
of the SVERI’s College of Engineering, Pandharpur is a bonafide
work done by me under supervision of Prof.P.D.Mane
Pandharpur 1.Ghule
Shreyash Balaji
06-04-2024
2.Jadhav Ranveer Pradip
Abstract
Acknowledgement
1. Introduction
2. Literature Review
3. Methodology
4. Implementation
5. Result
Conclusion
Abstract
The ID Card Generator project aims to develop a robust
and user-friendly application using Java programming
language that automates the process of generating
identification cards.
1. Introduction
Welcome to the Swing-based ID Card Generator project
presentation. In this project, we have developed a user-friendly
Java application utilizing the Swing package to facilitate the
creation of personalized identification cards.
2. Design:
3. Implementation:
public StudentIDCard() {
setTitle("Student ID Card");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(500, 600);
setLayout(new GridLayout(11, 2, 10, 10));
add(new JLabel("Branch:"));
branchField = new JTextField();
add(branchField);
add(new JLabel("DOB:"));
dobField = new JTextField();
add(dobField);
add(new JLabel("Address:"));
addressField = new JTextField();
add(addressField);
setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
// Generate ID card
String collegeName = collegeNameField.getText();
String studentName = studentNameField.getText();
String branch = branchField.getText();
String bloodGroup = bloodGroupField.getText();
String dob = dobField.getText();
String address = addressField.getText();
String phoneNumber = phoneNumberField.getText();
setTitle("Generated ID Card");
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setSize(400, 600);
setLayout(new BorderLayout());
https://www.javatpoint.com/java-tutorial
https://www.w3schools.com/java/