Java——學(xué)生管理系統(tǒng)
入門一門語言必寫的作業(yè)——學(xué)生管理系統(tǒng)。主要為了熟悉一下剛學(xué)的java語法。
基本上沒什么難度,就是很繁瑣。
兩個界面,一個是登錄學(xué)生管理系統(tǒng)的界面,一個是進(jìn)入后的后臺界面
需求一:
采取控制臺的方式去書寫學(xué)生管理系統(tǒng)。
分析:
初始菜單:
"-------------歡迎----------------"?
"1:添加學(xué)生"?
"2:刪除學(xué)生"
"3:修改學(xué)生"
"4:查詢學(xué)生"?
"5:退出"?
"請輸入您的選擇:"
學(xué)生類:
屬性:id、姓名、年齡、家庭住址
添加功能:
鍵盤錄入每一個學(xué)生信息并添加,需要滿足以下要求:
id唯一
刪除功能:
鍵盤錄入要刪除的學(xué)生id,需要滿足以下要求:
id存在刪除
id不存在,需要提示不存在,并回到初始菜單
修改功能:
鍵盤錄入要修改的學(xué)生id,需要滿足以下要求
id存在,繼續(xù)錄入其他信息
id不存在,需要提示不存在,并回到初始菜單
查詢功能:
打印所有的學(xué)生信息,需要滿足以下要求
如果沒有學(xué)生信息,提示:當(dāng)前無學(xué)生信息,請?zhí)砑雍笤俨樵?/p>
如果有學(xué)生信息,需要按照以下格式輸出。(不用過于糾結(jié)對齊的問題)
id 姓名 年齡 家庭住址?
stu001 張三 23 南京?
stu002 李四 24 北京?
stu003 王五 25 廣州?
stu004 趙六 26 深圳
需求二:
為學(xué)生管理系統(tǒng)書寫一個登陸、注冊、忘記密碼的功能。
只有用戶登錄成功之后,才能進(jìn)入到學(xué)生管理系統(tǒng)中進(jìn)行增刪改查操作。
分析:
登錄界面:
System.out.println("歡迎來到學(xué)生管理系統(tǒng)");?
System.out.println("請選擇操作1登錄 2注冊 3忘記密碼 4退出");
用戶類:
屬性:用戶名、密碼、身份證號碼、手機(jī)號碼
注冊功能:
1,用戶名需要滿足以下要求:
驗證要求:
用戶名唯一
用戶名長度必須在3~15位之間
只能是字母加數(shù)字的組合,但是不能是純數(shù)字
2,密碼鍵盤輸入兩次,兩次一致才可以進(jìn)行注冊。
3,身份證號碼需要驗證。
驗證要求:
長度為18位
不能以0為開頭
前17位,必須都是數(shù)字
最為一位可以是數(shù)字,也可以是大寫X或小寫x
4,手機(jī)號驗證。
驗證要求:
長度為11位
不能以0為開頭
必須都是數(shù)字
登錄功能:
1,鍵盤錄入用戶名
2,鍵盤錄入密碼
3,鍵盤錄入驗證碼
驗證要求:
用戶名如果未注冊,直接結(jié)束方法,并提示:用戶名未注冊,請先注冊
判斷驗證碼是否正確,如不正確,重新輸入
再判斷用戶名和密碼是否正確,有3次機(jī)會
忘記密碼:
1,鍵盤錄入用戶名,判斷當(dāng)前用戶名是否存在,如不存在,直接結(jié)束方法,并提示:未注冊
2,鍵盤錄入身份證號碼和手機(jī)號碼
3,判斷當(dāng)前用戶的身份證號碼和手機(jī)號碼是否一致,
如果一致,則提示輸入密碼,進(jìn)行修改。
如果不一致,則提示:賬號信息不匹配,修改失敗。
驗證碼規(guī)則:
長度為5
由4位大寫或者小寫字母和1位數(shù)字組成,同一個字母可重復(fù)
數(shù)字可以出現(xiàn)在任意位置
比如:
aQa1K












javabean類:Student



javabean類:User



StudenManager.java
package Java;
import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;
public class StudentManager{
? ? public static void main(String[] args) {
? ? ? ArrayList<Student> studentList = new ArrayList<>();
? ? ? ArrayList<User> userList = new ArrayList<>();
? ? ? while(true){
? ? ? ? menu_1();
? ? ? ? Scanner sc = new Scanner(System.in);
? ? ? ? String choose = sc.next();
? ? ? ? switch (choose){
? ? ? ? ? case "1" -> Login(userList,studentList);
? ? ? ? ? case "2" -> register(userList);
? ? ? ? ? case "3" -> forgetPassword(userList);
? ? ? ? ? case "4" -> {System.out.println("退出整個系統(tǒng)"); System.exit(0);}
? ? ? ? ? default -> System.out.println("沒有這個選項");
? ? ? ? }
? ? ? }
? ? }
? ? public static void Login(ArrayList<User> userList, ArrayList<Student> studentList){
? ? ? System.out.println("請輸入您的用戶名");
? ? ? Scanner sc = new Scanner(System.in);
? ? ? String username = sc.next();
? ? ? int index = getUserIndex(userList, username);
? ? ? if(index==-1){
? ? ? ? System.out.println("用戶名未注冊,請先注冊");
? ? ? ? return;
? ? ? }
? ? ? else{
? ? ? ? User user = userList.get(index);
? ? ? ? int failNum = 0;
? ? ? ? while(failNum<3){
? ? ? ? ? System.out.println("請輸入密碼");
? ? ? ? ? String password = sc.next();
? ? ? ? ? if(user.getPassword().equals(password)){
? ? ? ? ? ? while(true){
? ? ? ? ? ? ? String code = getCode();
? ? ? ? ? ? ? System.out.println("請輸入驗證碼:");
? ? ? ? ? ? ? String codeInput = sc.next();
? ? ? ? ? ? ? if(code.equals(codeInput)){
? ? ? ? ? ? ? ? System.out.println("登陸成功");
? ? ? ? ? ? ? ? StudentSystem(studentList);
? ? ? ? ? ? ? ? return;
? ? ? ? ? ? ? }
? ? ? ? ? ? ? else{
? ? ? ? ? ? ? ? System.out.println("驗證碼有誤,請重試");
? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? }
? ? ? ? ? else{
? ? ? ? ? ? failNum++;
? ? ? ? ? ? if(failNum<3) System.out.println("密碼錯誤,請再次輸入,您還剩" + (3-failNum) + "次機(jī)會");
? ? ? ? ? }
? ? ? ? }
? ? ? ? System.out.println("密碼嘗試次數(shù)已耗盡,系統(tǒng)自動退出登錄界面");
? ? ? ? return;
? ? ? }
? ? }
? ? public static void register(ArrayList<User> userList){
? ? ? User user = new User();
? ? ? while(true){
? ? ? ? System.out.println("請輸入您待注冊的用戶名");
? ? ? ? Scanner sc = new Scanner(System.in);
? ? ? ? String username = sc.next();
? ? ? ? if(checkUsername(userList, username)){
? ? ? ? ? user.setUsername(username);
? ? ? ? ? while(true){
? ? ? ? ? ? System.out.println("請輸入密碼:");
? ? ? ? ? ? String password1 = sc.next();
? ? ? ? ? ? System.out.println("請再次輸入一遍:");
? ? ? ? ? ? String password2 = sc.next();
? ? ? ? ? ? if(!password1.equals(password2)){
? ? ? ? ? ? ? System.out.println("兩次輸入不一致,請重新輸入");
? ? ? ? ? ? }
? ? ? ? ? ? else{
? ? ? ? ? ? ? user.setPassword(password2);
? ? ? ? ? ? ? while(true){
? ? ? ? ? ? ? ? System.out.println("請輸入身份證號碼:");
? ? ? ? ? ? ? ? String personID = sc.next();
? ? ? ? ? ? ? ? if(checkPersonID(userList, personID)){
? ? ? ? ? ? ? ? ? user.setPersonID(personID);
? ? ? ? ? ? ? ? ? while(true){
? ? ? ? ? ? ? ? ? ? System.out.println("請輸入手機(jī)號");
? ? ? ? ? ? ? ? ? ? String phoneNumber = sc.next();
? ? ? ? ? ? ? ? ? ? if(checkPhoneNumber(userList, phoneNumber)){
? ? ? ? ? ? ? ? ? ? ? user.setPhoneNumber(phoneNumber);
? ? ? ? ? ? ? ? ? ? ? userList.add(user);
? ? ? ? ? ? ? ? ? ? ? break;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? break;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? }
? ? ? ? ? ? ? break;
? ? ? ? ? ? }
? ? ? ? ? }
? ? ? ? ? break;
? ? ? ? }
? ? ? }
? ? }
? ? public static void forgetPassword(ArrayList<User> userList){
? ? ? System.out.println("請輸入您的用戶名");
? ? ? Scanner sc = new Scanner(System.in);
? ? ? String username = sc.next();
? ? ? int index = getUserIndex(userList, username);
? ? ? if(index==-1){
? ? ? ? System.out.println("未注冊");
? ? ? ? return;
? ? ? }
? ? ? else{
? ? ? ? User user = userList.get(index);
? ? ? ? System.out.println("請輸入身份證號");
? ? ? ? String personID = sc.next();
? ? ? ? System.out.println("請輸入手機(jī)號");
? ? ? ? String phoneNumber = sc.next();
? ? ? ? if(user.getPersonID().equals(personID)&&user.getPhoneNumber().equals(phoneNumber)){
? ? ? ? ? while(true){
? ? ? ? ? ? System.out.println("請輸入新密碼");
? ? ? ? ? ? String password1 = sc.next();
? ? ? ? ? ? System.out.println("請再次輸入");
? ? ? ? ? ? String password2 = sc.next();
? ? ? ? ? ? if(password1.equals(password2)){
? ? ? ? ? ? ? user.setPassword(password2);
? ? ? ? ? ? ? System.out.println("修改成功!");
? ? ? ? ? ? ? return;
? ? ? ? ? ? }
? ? ? ? ? ? else{
? ? ? ? ? ? ? System.out.print("密碼不一致,");
? ? ? ? ? ? }
? ? ? ? ? }
? ? ? ? }
? ? ? ? else{
? ? ? ? ? System.out.println("賬號信息不匹配,修改失敗");
? ? ? ? ? return;
? ? ? ? }
? ? ? }
? ? }
? ? public static boolean checkUsername(ArrayList<User> userList,String username){
? ? ? if(getUserIndex(userList, username)!=-1){
? ? ? ? System.out.println("用戶名已注冊,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? if(username.length() < 3 | username.length() > 15){
? ? ? ? ? System.out.println("用戶名長度不合法,請重新輸入3-15位的用戶名");
? ? ? ? ? return false;
? ? ? }
? ? ? boolean flag = true;//判斷是否為純數(shù)字;
? ? ? for (int i = 0; i < username.length(); i++) {
? ? ? ? char ch = username.charAt(i);
? ? ? ? if(!(ch>='0'&&ch<='9') && !(ch>='a'&&ch<='z') && !(ch>='A'&&ch<='Z')){
? ? ? ? ? System.out.println("用戶名中含有非法字符,請重新輸入");
? ? ? ? ? return false;
? ? ? ? }
? ? ? ? if((ch>='a'&&ch<='z') || (ch>='A'&&ch<='Z')){
? ? ? ? ? flag = false;
? ? ? ? }
? ? ? }
? ? ? if(flag){
? ? ? ? System.out.println("用戶名不能為純數(shù)字,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? return true;
? ? }
? ? public static boolean checkPersonID(ArrayList<User> userList,String personID){
? ? ? for (int i = 0; i < userList.size(); i++) {
? ? ? ? if(userList.get(i).getPersonID().equals(personID)){
? ? ? ? ? System.out.println("身份證號已存在,請重新輸入");
? ? ? ? ? return false;
? ? ? ? }
? ? ? }
? ? ? if(personID.length()!=18){
? ? ? ? System.out.println("身份證號長度不合法,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? if(personID.startsWith("0")){
? ? ? ? System.out.println("身份證號不合法,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? char lastChar = personID.charAt(personID.length()-1);
? ? ? if(!(lastChar>='0'&&lastChar<='9') && !(lastChar=='x' || lastChar== 'X')){
? ? ? ? System.out.println("身份證尾號不合法,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? for (int i = 0; i < personID.length()-1; i++) {
? ? ? ? if(!(personID.charAt(i)>='0'&&personID.charAt(i)<='9')){
? ? ? ? ? System.out.println("身份證號含非法字符,請重新輸入");
? ? ? ? ? return false;
? ? ? ? }
? ? ? }
? ? ? return true;
? ? }
? ? public static boolean checkPhoneNumber(ArrayList<User> userList,String phoneNumber){
? ? ? for (int i = 0; i < userList.size(); i++) {
? ? ? ? if(userList.get(i).getPhoneNumber().equals(phoneNumber)){
? ? ? ? ? System.out.println("手機(jī)號已存在,請重新輸入");
? ? ? ? ? return false;
? ? ? ? }
? ? ? }
? ? ? if(phoneNumber.length()!=11){
? ? ? ? System.out.println("手機(jī)號長度不合法,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? if(phoneNumber.startsWith("0")){
? ? ? ? System.out.println("手機(jī)號不合法,請重新輸入");
? ? ? ? return false;
? ? ? }
? ? ? for (int i = 0; i < phoneNumber.length(); i++) {
? ? ? ? if(!(phoneNumber.charAt(i)>='0'&&phoneNumber.charAt(i)<='9')){
? ? ? ? ? System.out.println("手機(jī)號含非法字符,請重新輸入");
? ? ? ? ? return false;
? ? ? ? }
? ? ? }
? ? ? return true;
? ? }
? ? public static int getUserIndex(ArrayList<User> userList,String username){
? ? ? for (int i = 0; i < userList.size(); i++) {
? ? ? ? if(userList.get(i).getUsername().equals(username)){
? ? ? ? ? return i;
? ? ? ? }
? ? ? }
? ? ? return -1;
? ? }
? ? public static String getCode(){
? ? ? Random r = new Random();
? ? ? ? StringBuilder sb = new StringBuilder();
? ? ? ? for (int i = 0; i < 4; i++) {
? ? ? ? ? sb.append((char)(r.nextInt(26)+'a'));
? ? ? ? }
? ? ? ? sb.insert(r.nextInt(4), (char)(r.nextInt(10)+'0'));
? ? ? ? String code = sb.toString();
? ? ? ? System.out.println("驗證碼為:"+code);
? ? ? return sb.toString();
? ? }
? ? public static void StudentSystem(ArrayList<Student> studentList){
? ? ? while(true){
? ? ? ? menu_2();
? ? ? ? Scanner sc = new Scanner(System.in);
? ? ? ? String choose = sc.next();
? ? ? ? switch (choose){
? ? ? ? ? case "1" -> addStudent(studentList);
? ? ? ? ? case "2" -> delStudent(studentList);
? ? ? ? ? case "3" -> changeStudent(studentList);
? ? ? ? ? case "4" -> show(studentList);
? ? ? ? ? case "5" -> {System.out.println("退出"); return;}
? ? ? ? ? default -> System.out.println("沒有這個選項");
? ? ? ? }
? ? ? }
? ? }
? ? public static void menu_1(){
? ? ? System.out.println("歡迎來到學(xué)生管理系統(tǒng)");
? ? ? System.out.println("1.登錄");
? ? ? System.out.println("2.注冊");
? ? ? System.out.println("3.忘記密碼");
? ? ? System.out.println("請輸入你的選擇:");
? ? }
? ? public static void menu_2(){
? ? ? System.out.println("----------歡迎----------");
? ? ? System.out.println("1.添加學(xué)生");
? ? ? System.out.println("2.刪除學(xué)生");
? ? ? System.out.println("3.修改學(xué)生");
? ? ? System.out.println("4.查詢學(xué)生");
? ? ? System.out.println("5.退出");
? ? ? System.out.println("請輸入你的選擇:");
? ? }
? ? public static void addStudent(ArrayList<Student> studentList){
? ? ? Scanner sc = new Scanner(System.in);
? ? ? System.out.println("請輸入id:");
? ? ? String id = sc.next();
? ? ? System.out.println("請輸入姓名");
? ? ? String name = sc.next();
? ? ? System.out.println("請輸入年齡");
? ? ? int age = sc.nextInt();
? ? ? System.out.println("請輸入住址");
? ? ? String address = sc.next();
? ? ? Student student = new Student(id,name,age,address);
? ? ? studentList.add(student);
? ? ? System.out.println("添加成功");
? ? }
? ? public static void delStudent(ArrayList<Student> studentList){
? ? ? Scanner sc = new Scanner(System.in);
? ? ? System.out.println("請輸入要刪除的id");
? ? ? String id = sc.next();
? ? ? int index = getStudentIndex(studentList, id);
? ? ? if(index==-1){
? ? ? ? System.out.println("id不存在,刪除失敗");
? ? ? }
? ? ? else{
? ? ? ? studentList.remove(index);
? ? ? ? System.out.println("id為:" + id + "的學(xué)生刪除成功");
? ? ? }
? ? }
? ? public static void changeStudent(ArrayList<Student> studentList){
? ? ? Scanner sc = new Scanner(System.in);
? ? ? System.out.println("請輸入要修改的id");
? ? ? String id = sc.next();
? ? ? int index = getStudentIndex(studentList, id);
? ? ? if(index==-1){
? ? ? ? System.out.println("id不存在,修改失敗");
? ? ? }
? ? ? else{
? ? ? ? Student student = studentList.get(index);
? ? ? ? System.out.println("請輸入姓名");
? ? ? ? String name = sc.next();
? ? ? ? System.out.println("請輸入年齡");
? ? ? ? int age = sc.nextInt();
? ? ? ? System.out.println("請輸入住址");
? ? ? ? String address = sc.next();
? ? ? ? student.setName(name);
? ? ? ? student.setAge(age);
? ? ? ? student.setAddress(address);
? ? ? ? System.out.println("id為:" + id + "的學(xué)生修改成功");
? ? ? }
? ? }
? ? public static void show(ArrayList<Student> studentList) {
? ? ? if(studentList.size()==0){
? ? ? ? System.out.println("當(dāng)前無學(xué)生信息,請?zhí)砑雍笤俨樵?#34;);
? ? ? ? return;
? ? ? }
? ? ? else{
? ? ? ? System.out.println("id\t\t姓名\t年齡\t家庭住址");
? ? ? ? for (int i = 0; i < studentList.size(); i++) {
? ? ? ? ? Student student = studentList.get(i);
? ? ? ? ? System.out.println(student.getId()+"\t\t"+student.getName()+"\t"+
? ? ? ? ? student.getAge()+"\t"+student.getAddress());
? ? ? ? }
? ? ? ? return;
? ? ? }
? ? }
? ? public static int getStudentIndex(ArrayList<Student> studentList, String id){
? ? ? for (int i = 0; i < studentList.size(); i++) {
? ? ? ? Student student = studentList.get(i);
? ? ? ? if(id.equals(student.getId())){
? ? ? ? ? return i;
? ? ? ? }
? ? ? }
? ? ? return -1;
? ? }
}

Student.java
package Java;
public class Student {
? ? private String id;
? ? private String name;
? ? private int age;
? ? private String address;
? ? public void setId(String id) {
? ? ? ? this.id = id;
? ? }
? ? public void setName(String name) {
? ? ? ? this.name = name;
? ? }
? ? public void setAge(int age) {
? ? ? ? this.age = age;
? ? }
? ? public Student() {
? ? }
? ? public void setAddress(String address) {
? ? ? ? this.address = address;
? ? }
? ? public Student(String id, String name, int age, String address) {
? ? ? ? this.id = id;
? ? ? ? this.name = name;
? ? ? ? this.age = age;
? ? ? ? this.address = address;
? ? }
? ? public String getId() {
? ? ? ? return id;
? ? }
? ? public String getName() {
? ? ? ? return name;
? ? }
? ? public int getAge() {
? ? ? ? return age;
? ? }
? ? public String getAddress() {
? ? ? ? return address;
? ? }
}

User.java
package Java;
public class User {
? ? private String username;
? ? private String password;
? ? private String personID;
? ? private String phoneNumber;
? ? public User() {
? ? }
? ? public User(String username, String password, String personID, String phoneNumber) {
? ? ? ? this.username = username;
? ? ? ? this.password = password;
? ? ? ? this.personID = personID;
? ? ? ? this.phoneNumber = phoneNumber;
? ? }
? ? public String getUsername() {
? ? ? ? return username;
? ? }
? ? public String getPassword() {
? ? ? ? return password;
? ? }
? ? public String getPersonID() {
? ? ? ? return personID;
? ? }
? ? public String getPhoneNumber() {
? ? ? ? return phoneNumber;
? ? }
? ? public void setUsername(String username) {
? ? ? ? this.username = username;
? ? }
? ? public void setPassword(String password) {
? ? ? ? this.password = password;
? ? }
? ? public void setPersonID(String personID) {
? ? ? ? this.personID = personID;
? ? }
? ? public void setPhoneNumber(String phoneNumber) {
? ? ? ? this.phoneNumber = phoneNumber;
? ? } ?
}