-2

我已经将手机联系人导出到 csv 文件,现在我想从 .csv 文件中读取和保存 android 中的联系人。

4

1 回答 1

1

根据这个答案

BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    try {
        String line;
        while ((line = reader.readLine()) != null) {
             String[] RowData = line.split(",");
             date = RowData[0];
             value = RowData[1];
            // do something with "data" and "value"
        }
    }
    catch (IOException ex) {
        // handle exception
    }
    finally {
        try {
            is.close();
        }
        catch (IOException e) {
            // handle exception
        }
    }
于 2013-03-15T06:55:50.103 回答