top of page
realcode4you

Creating Student Management System GUI Application Using Java NetBeans IDE

Requirement Details:

Overview of the system

You are tasked to develop a Java program to simulate a mini Student Management System.

The example below shows an example of the student management system that allows users to display, search and print statistic.













Figure1.1: The program displays the menu and allows the user to enter his option. You should validate the user input. If the input is invalid, it displays an error message and prompts the user to re-enter.













Figure1.2: If the user selects option 1, the program displays all students’ details. A student’s details should include the course, admin number, name of the student and the modules taken by the student. The info of the modules should include module code, module name, credit units and the marks the student gets.





















Figure 1.3: If the user chooses to search a student, the program prompts the user to enter the name of student to search and displays the result accordingly. It should display the course, admin number, name of the student, the modules taken by the student, and the student’s GPA result.




















Figure 1.4: If the user chooses to search a module, the program prompts the user to enter the module name to search, and displays the result accordingly. If there are student(s) taking the module, it displays the number of students taking the module and the average marks of all students taking this module.









Figure 1.5: If the user wants to print statistic, the program should report the number of students in total, the number of students and the percentage of students getting GPA more than 3.5, and the number of students and the percentage of students getting GPA less than 1.









Basic Requirements


Write the Java programs using appropriate methods, objects and arrays to perform the tasks stated in Overview of the system section (shown in Fig1.1 to Fig 1.6).


1. Write a Java class Module (or similar class) to represent a module object, you should have instance variables to store the module code, module name, credit unit and the marks of a student.

Add a constructor, appropriate get or set methods, or any other methods to the class if necessary.


2. Write a Java class Student (or similar class) to represent a student object, you should have instance variables to store the course, admin number, name, gpa and the Modules taken by a student. Kindly take note that a student will take more than one module.

Add a constructor, appropriate get or set methods, or any other methods to the class if necessary.


3. Write a Java class StudentManagement (or similar class) to manage the students. The class should have methods that will be invoked by the main method such as to create students, display students, search student, search module, print Statistic, …., etc. In this class, please create at least 3 Student objects and store in an array.


4. Write a Java class StudentUser (or similar class) that contains the main() method for the entire application. The main() method is where your program will start to run. It displays the menu and calls the methods in StudentManagement class accordingly.


5. Implement the advanced features such as, but not limited to the followings:

  • Validate for non-numeric input

  • Display students’ information in a tabulate format.

  • Sound effects.

  • Add in a new user type for the system: Administrator, so that the administrator can add/delete/modify student details.

  • Generated more statistic for the report and allow user to print

  • Keep track of the time when a user uses the system.

  • Any other features that enhance the system.

Note: Do NOT implement a full Graphic User Interface (GUI) program. For the purpose of Assignment, you should be using the dialogs available from the JOptionPane class.



If you are looking help in any Java GUI application related NetBeans IDE then our expert provide result as per your expectations. If you need solution of above problem then also contact Us or send your requirement details at:

realcod4you@gmail.com


Comments


bottom of page