/*
- 需求:我有一个文本文件中存储了几个名称,请大家写一个程序实现随机获取一个人的名字。
- 分析:
-
A:把文本文件中的数据存储到集合中
-
B:随机产生一个索引
-
C:根据该索引获取一个值
*/
public class GetName {
public static void main(String[] args) throws IOException {
// 把文本文件中的数据存储到集合中
BufferedReader br = new BufferedReader(new FileReader(“b.txt”));
ArrayList array = new ArrayList();
String line = null;
while ((line = br.readLine()) != null) {
array.add(line);
}
br.close();
// 随机产生一个索引
Random r = new Random();
int index = r.nextInt(array.size());
// 根据该索引获取一个值
String name = array.get(index);
System.out.println("该幸运者是:" + name);
}
}