您好,登錄后才能下訂單哦!
流是一種抽象概念,它代表了數據的無結構化傳遞。按照流的方式進行輸入輸出,數據被當成無結構的字節序或字符序列。從流中取得數據的操作稱為提取操作,而向流中添加數據的操作稱為插入操作。用來進行輸入輸出操作的流就稱為IO流。換句話說,IO流就是以流的方式進行輸入輸出。
本文要為大家介紹 IO流案例,主要內容包括案例需求、步驟分析、代碼實現等等,現在一起來看看吧!
1、集合到文件數據排序
(1)案例需求
鍵盤錄入5個學生信息(姓名,語文成績,數學成績,英語成績)。要求按照成績總分從高到低寫入文本文件。格式:姓名,語文成績,數學成績,英語成績? 舉例:林青霞,98,99,100
(2)分析步驟
a.定義學生類
b.創建TreeSet集合,通過比較器排序進行排序
c.鍵盤錄入學生數據
d.創建學生對象,把鍵盤錄入的數據對應賦值給學生對象的成員變量
e.把學生對象添加到TreeSet集合
f.創建字符緩沖輸出流對象
g.遍歷集合,得到每一個學生對象
h.把學生對象的數據拼接成指定格式的字符串
i.調用字符緩沖輸出流對象的方法寫數據
j.釋放資源
(3)代碼實現
學生類:
java
public class Student {
// 姓名
private String name;
// 語文成績
private int chinese;
// 數學成績
private int math;
// 英語成績
private int english;
public Student() {
super();
}
public Student(String name, int chinese, int math, int english) {
super();
this.name = name;
this.chinese = chinese;
this.math = math;
this.english = english;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getChinese() {
return chinese;
}
public void setChinese(int chinese) {
this.chinese = chinese;
}
public int getMath() {
return math;
}
public void setMath(int math) {
this.math = math;
}
public int getEnglish() {
return english;
}
public void setEnglish(int english) {
this.english = english;
}
public int getSum() {
return this.chinese + this.math + this.english;
}
}
```
測試類:
```java
public class TreeSetToFileDemo {
public static void main(String[] args) throws IOException {
//創建TreeSet集合,通過比較器排序進行排序
TreeSet<Student> ts = new TreeSet<Student>(new Comparator<Student>() {
@Override
public int compare(Student s1, Student s2) {
//成績總分從高到低
int num = s2.getSum() - s1.getSum();
//次要條件
int num2 = num == 0 ? s1.getChinese() - s2.getChinese() : num;
int num3 = num2 == 0 ? s1.getMath() - s2.getMath() : num2;
int num4 = num3 == 0 ? s1.getName().compareTo(s2.getName()) : num3;
return num4;
}
});
//鍵盤錄入學生數據
for (int i = 0; i < 5; i++) {
Scanner sc = new Scanner(System.in);
System.out.println("請錄入第" + (i + 1) + "個學生信息:");
System.out.println("姓名:");
String name = sc.nextLine();
System.out.println("語文成績:");
int chinese = sc.nextInt();
System.out.println("數學成績:");
int math = sc.nextInt();
System.out.println("英語成績:");
int english = sc.nextInt();
//創建學生對象,把鍵盤錄入的數據對應賦值給學生對象的成員變量
Student s = new Student();
s.setName(name);
s.setChinese(chinese);
s.setMath(math);
s.setEnglish(english);
//把學生對象添加到TreeSet集合
ts.add(s);
}
//創建字符緩沖輸出流對象
BufferedWriter bw = new BufferedWriter(new FileWriter("myCharStream\\ts.txt"));
//遍歷集合,得到每一個學生對象
for (Student s : ts) {
//把學生對象的數據拼接成指定格式的字符串
//格式:姓名,語文成績,數學成績,英語成績
StringBuilder sb = new StringBuilder();
sb.append(s.getName()).append(",").append(s.getChinese()).append(",").append(s.getMath()).append(",").append(s.getEnglish()).append(",").append(s.getSum());
// 調用字符緩沖輸出流對象的方法寫數據
bw.write(sb.toString());
bw.newLine();
bw.flush();
}
//釋放資源
bw.close();
}
}
以上就是Java基礎學習筆記之IO流案例的全部內容,大家都明白了嗎?
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。