我需要創建一個Java中的字符串數組的數組的數組...創建數組在Java中
例如,我讀了包含每個列的運動,運動員name..like文件:
在這對在填入分組節列表的末尾(體育)
hockey,Wayne Gretsky
hockey,Mario Lemieux
baseball,Barry Bonds
baseball,A Rod
我需要創建[] []與此功能的目標是:
public static String[][] getSportItems(int sectionCount){
String currentSection="";
int cnt=0;
try{
File file = new File(Environment.getExternalStorageDirectory()
+ "/sports.csv");
BufferedReader br = new BufferedReader(new FileReader(file));
String strLine = "";
while ((strLine = br.readLine()) != null) {
String[] data = strLine.split(";");
if(cnt>0){
}
cnt++;
}
}catch (IOException e) {
e.printStackTrace();
}
}
我怎樣才能管理,爲每個包含與運動相關的運動員的運動創建一個陣列。
我在Java中是新...感謝
你有一些我們可以使用的代碼嗎? – Marcelo 2011-06-06 20:00:20
這是功課,不是嗎?請給它貼上標籤,然後發佈你的嘗試,並描述你所困擾的內容。 – Marcin 2011-06-06 20:01:04
當元素數量未知時,最好使用'List'。 – mre 2011-06-06 20:01:08