├── README.md └── Student_Registration_System ├── Student_Registration_System ├── .project ├── JDBC │ └── mysql-connector-java-8.0.20.jar ├── bin │ ├── Login │ │ ├── Login.class │ │ ├── Main_Login_GUI.class │ │ ├── Prof_GUI.class │ │ ├── Registrar_GUI.class │ │ └── Stu_GUI.class │ ├── Server │ │ ├── Database.class │ │ ├── Professor.class │ │ ├── Register.class │ │ ├── SRSServer.class │ │ ├── Schdule.class │ │ ├── SingleServer.class │ │ └── Student.class │ └── module-info.class └── src │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── Login │ ├── AddProfessor.java │ ├── AddStudent.java │ ├── ConflictCourseGUI.java │ ├── Login.java │ ├── MaintainProfessor.java │ ├── MaintainStudent.java │ ├── ModifyProfessor.java │ ├── ModifyStudent.java │ ├── MyButtonEditor.java │ ├── MyButtonEditor2.java │ ├── MyButtonEditor3.java │ ├── MyButtonRender.java │ ├── MyButtonRender2.java │ ├── MyButtonRender3.java │ ├── NotRegisterTimeShowCourseGUI.java │ ├── Prof_GUI.java │ ├── Registrar_GUI.java │ ├── SearchProfessor.java │ ├── SearchStudent.java │ ├── Search_Del.java │ ├── ShowCourseGUI.java │ ├── ShowCourseeqGUI.java │ ├── Stu_GUI.java │ ├── SubmitGrades.java │ └── ViewReportCard.java │ ├── Server │ ├── Database.java │ ├── Professor.java │ ├── Register.java │ ├── SRSServer.java │ └── Student.java │ ├── Student_Registration_GUI │ ├── CourseRegistration.java │ └── CrFrame.java │ └── module-info.java ├── administration_system.sql └── course_catalog.sql /README.md: -------------------------------------------------------------------------------- 1 | # Student_Registration_System 2 | 学生选课管理系统 3 | 4 | 吉林大学2017级软件工程课程设计代码 5 | -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/.project -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/JDBC/mysql-connector-java-8.0.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/JDBC/mysql-connector-java-8.0.20.jar -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Login/Login.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Login/Login.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Login/Main_Login_GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Login/Main_Login_GUI.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Login/Prof_GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Login/Prof_GUI.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Login/Registrar_GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Login/Registrar_GUI.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Login/Stu_GUI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Login/Stu_GUI.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/Database.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/Database.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/Professor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/Professor.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/Register.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/Register.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/SRSServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/SRSServer.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/Schdule.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/Schdule.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/SingleServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/SingleServer.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/Server/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/Server/Student.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/bin/module-info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/bin/module-info.class -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/.classpath -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/.project -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/AddProfessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/AddProfessor.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/AddStudent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/AddStudent.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/ConflictCourseGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/ConflictCourseGUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/Login.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MaintainProfessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MaintainProfessor.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MaintainStudent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MaintainStudent.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/ModifyProfessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/ModifyProfessor.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/ModifyStudent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/ModifyStudent.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MyButtonEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MyButtonEditor.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MyButtonEditor2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MyButtonEditor2.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MyButtonEditor3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MyButtonEditor3.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MyButtonRender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MyButtonRender.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MyButtonRender2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MyButtonRender2.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/MyButtonRender3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/MyButtonRender3.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/NotRegisterTimeShowCourseGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/NotRegisterTimeShowCourseGUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/Prof_GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/Prof_GUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/Registrar_GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/Registrar_GUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/SearchProfessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/SearchProfessor.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/SearchStudent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/SearchStudent.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/Search_Del.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/Search_Del.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/ShowCourseGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/ShowCourseGUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/ShowCourseeqGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/ShowCourseeqGUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/Stu_GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/Stu_GUI.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/SubmitGrades.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/SubmitGrades.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Login/ViewReportCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Login/ViewReportCard.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Server/Database.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Server/Database.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Server/Professor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Server/Professor.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Server/Register.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Server/Register.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Server/SRSServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Server/SRSServer.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Server/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Server/Student.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Student_Registration_GUI/CourseRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Student_Registration_GUI/CourseRegistration.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/Student_Registration_GUI/CrFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/Student_Registration_GUI/CrFrame.java -------------------------------------------------------------------------------- /Student_Registration_System/Student_Registration_System/src/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/Student_Registration_System/src/module-info.java -------------------------------------------------------------------------------- /Student_Registration_System/administration_system.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/administration_system.sql -------------------------------------------------------------------------------- /Student_Registration_System/course_catalog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisakaGeek/Student_Registration_System/HEAD/Student_Registration_System/course_catalog.sql --------------------------------------------------------------------------------