IO流的練習1 隨機獲取文字中的資訊

2022-09-06 00:15:23 字數 495 閱讀 8906

需求:乙個文字中有幾個名字,隨機從中獲取乙個名字

分析:a:首先把文字中的資料讀出

b:再把資料儲存到集合中

c:產生乙個隨機的索引

d:列印出這個索引對應的值

1

public

static

void main(string args) throws

ioexception

11br.close();

1213

//獲取隨機索引

14 random r = new

random();

15int index =r.nextint(name.size());

1617

//獲取對應的名字

18 string result =name.get(index);

19system.out.println(result);

20 }

IO流的練習

定義學生類,包含姓名 string name 性別 string gender 年齡 int age 三個屬性,生成空參有參構造,set和get方法,tostring方法 2.鍵盤錄入6個學員資訊 錄入格式 張三,男,25 要求有兩個相同的資訊,將6個學員資訊存入到arraylist集合中 3.將存...

IO流的練習

學生名單乙份學生作業若干份,分別儲存在 作業 資料夾中 在 作業統計結果.txt 中沒有交作業的學生名字後邊新增 未交作業 已提交的名字後邊新增 已提交 1 使用bufferedreader 讀取原始名單並以 張三 未交作業 存入hashmap 中 2 使用file.list 方法獲取提交作業資料夾...

IO 集合中獲取流的幾種方式

1 從檔案中讀 public static inputstream getinputstream throws ioexception2 從網路上讀 public static inputstream getinputstream throws ioexception3 從記憶體上讀 public ...