运用Java IO流知识自己搭建学生管理系统 主要想法:实现学生管理的增删改查的基本操作,用IO流的BufferedWrite实现将list保存到硬盘,并在程序重新运行时读取。

用户操作界面:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import Settings.*;

import Exception.MyException;

import java.util.Scanner;

public class Main {
public static void main(String[] args) {
try {
FileOperate fo = new FileOperate();
while (true) {
Menu.showMenu();
Scanner kb = new Scanner(System.in);
int selection = kb.nextInt();
/**
* 增加
*/
if (selection == 1) {
fo.add();
break;
}
/**
* 删除
*/
else if (selection == 2) {
fo.delete();
break;
}
/**
* 修改
*/
else if (selection == 3) {
fo.update();
break;
}
/**
* 查找
*/
else if (selection == 4) {
Menu.subMenu();
selection=kb.nextInt();
//按学号查找
if(selection==1)
fo.searchID();
//按姓名查找
if(selection==2)
fo.searchName();
break;
}
/**
* 浏览全部
*/
else if (selection == 5) {
fo.viewAll();
break;
} else if (selection == 0) {
break;
} else {
try {
throw new MyException("您的输入有误,请重新输入!");
} catch (MyException e) {
System.out.println(e.getMessage());
}
}
kb.close();
}
}catch (Exception e){
System.out.println("暂无此学生!重新输入!");
e.printStackTrace();
}
}
}

菜单界面:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package Settings;

/**
* 菜单类
*
*/

public class Menu {
//主菜单
public static void showMenu(){
System.out.println("学生管理系统");
System.out.println("****************************");
System.out.println("[1]增加");
System.out.println("[2]删除");
System.out.println("[3]修改");
System.out.println("[4]查找");
System.out.println("[5]浏览");
System.out.println("[0]退出");
System.out.println("****************************");
System.out.println("请选择操作:");
}

//二级菜单
public static void subMenu(){
System.out.println("学生查询");
System.out.println("****************************");
System.out.println("[1]按学号查询");
System.out.println("[2]按姓名查询");
System.out.println("[0]退出");
System.out.println("****************************");
System.out.println("请选择操作:");
}
}

文件操作部分:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package Settings;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

/**
* 文件访问通用类
*/
public class FileOperate {
String fileName="Students.txt";

public FileOperate(){
//创建文件
File file=new File(this.fileName);
//检查文件是否存在
if(!file.exists()){
try {
//如果不存在就创建文件
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
}

/**
* 增加学生信息
*/
public void add() {
try {
Scanner sc = new Scanner(System.in);
System.out.println("请输入学号");
String id = sc.nextLine();
System.out.println("请输入学生姓名");
String name = sc.nextLine();
System.out.println("请输入学生性别");
String sex = sc.nextLine();
System.out.println("请输入学生入学时间");
String time = sc.nextLine();
sc.close();

//建立新的newStudent对象
Student newStudent = new Student(id, name, sex, time);
List<Student> list = getList();
list.add(newStudent);
saveList(list);
//如果添加成功返回提示
System.out.println("成功添加学生:" + name);
}catch (Exception e){
//否则catch到错误,提示添加失败
System.out.println("添加学生失败!");
e.printStackTrace();
}
}

/**
* 保存list,并重写该文件
* @param list
* @throws IOException
*/
private void saveList(List<Student> list) throws IOException {
//创建文件输入流
BufferedWriter writer=new BufferedWriter(new FileWriter(this.fileName));
for (Student newStudent:list) {
//将newStudent对象存入students.txt文件
writer.write(newStudent.getId()+"t"+newStudent.getName()+"t"+newStudent.getSex()+"t"+newStudent.getTime()+"tn");
}
//关闭IO输入流
writer.close();
}


/**
* 读取文件到list
* @return
* @throws IOException
*/
private List<Student> getList() throws IOException {
List<Student> list =new ArrayList<Student>();
BufferedReader reader=new BufferedReader(new FileReader(this.fileName));
String line;
while((line=reader.readLine())!=null){
//读取文件,以t为分隔读取文件到list
String[] temp=line.split("t");
String id=temp[0];
String name=temp[1];
String sex=temp[2];
String time=temp[3];
list.add(new Student(id,name,sex,time));
}
//关闭IO输出流
reader.close();
return list;
}

/**
* 删除学生信息
* @throws IOException
*/
public void delete() throws IOException {
System.out.println("请输入学生学号:");
Scanner sc=new Scanner(System.in);
String id=sc.nextLine();
List<Student> list =getList();
//动作标记
boolean flag=false;
for(int i=0;i<list.size();i++){
if(list.get(i).getId().equals(id)){
//删除学生
list.remove(i);
//标记此动作完成
flag=true;
}
}
if(flag) {
saveList(list);
System.out.println("删除成功!");
}
else
System.out.println("删除失败!");
//关闭Scanner输入流
sc.close();
}

/**
* 修改学生信息(删除+增加学生)
*/
public void update() throws IOException {
List<Student> list =getList();
Scanner sc=new Scanner(System.in);
System.out.println("请输入学生学号:");
String id=sc.nextLine();
System.out.println("请输入学生姓名:");
String name=sc.nextLine();
System.out.println("请输入学生性别:");
String sex=sc.nextLine();
System.out.println("请输入学生入学时间:");
String time=sc.nextLine();
Student ModifyStudent=new Student(id,name,sex,time);
boolean flag=false;
for(int i=0;i<list.size();i++){
if(list.get(i).getId().equals(id)){
//删除学生
list.remove(i);
//标记此动作完成
flag=true;
}
}
if(flag) {
list.add(ModifyStudent);
saveList(list);
System.out.println("修改成功!");
}
else
System.out.println("删除失败!暂无此学生!");
//关闭Scanner输入流
sc.close();
}

/**
* 查找学生信息(按照学号查找)
*/
public void searchID() throws IOException {
//读取文件
List<Student> list = getList();
//创建Scanner输入流
Scanner sc = new Scanner(System.in);
//提示用户输入学号
System.out.println("请输入学生学号:");
String id = sc.nextLine();
boolean flag = false;
for (int i = 0; i < list.size(); i++) {
if (list.get(i).getId().equals(id)) {
flag = true;
//显示输出
System.out.println(list.get(i).getId() + " " + list.get(i).getName() + " " + list.get(i).getSex() + " " + list.get(i).getTime());
}
}
if (!flag) {
System.out.println("不存在此学生!!");
}
sc.close();
}

/**
* 查找学生信息(按照学生姓名查找)
*/
public void searchName() throws IOException {
List<Student> list = getList();
//创建Scanner输入流
Scanner sc = new Scanner(System.in);
//提示用户输入学生姓名
System.out.println("请输入学生姓名:");
String name = sc.nextLine();
//操作标记
boolean flag = false;
for (int i = 0; i < list.size(); i++) {
if (list.get(i).getName().equals(name)) {
//输出学生信息
System.out.println(list.get(i).getId() + " " + list.get(i).getName() + " " + list.get(i).getSex() + " " + list.get(i).getTime());
flag = true;
}
}
if (!flag) {
System.out.println("不存在此学生!!");
}
sc.close();
}


/**
* 浏览全部学生信息
*/
public void viewAll() throws IOException {
List<Student> list = getList();
System.out.println("**********学生信息总览**********");
System.out.println("学号"+" "+"姓名"+" "+"性别"+" "+"入学时间");
boolean flag=false;
for(int i=0;i<list.size();i++){
if((list.get(i).getId())!=null){
flag=true;
System.out.println(list.get(i).getId()+" "+list.get(i).getName()+" "+list.get(i).getSex()+" "+list.get(i).getTime());
}
if(!flag)
System.out.println("暂时没有添加学生!");
}
}
}

  完全内容请移步:http://git.codinglink.tech/palm/cs-learning/src/StudentManagement