我如何从android中的excel文件读取?

时间:2018-12-26 02:17:49

标签: java android

我想让我的App从excel文件中读取,我尝试使用Buffer Reader,但不起作用 我想知道我首先应该做什么,以及文件的语法是什么 我尝试这也行不通

File data = new File(getFilesDir(),"dat.csv");
        Scanner sc=null;
        try {
            sc = new Scanner(data);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        int i = 0;
        while (sc.hasNext()) {
            String Lines = sc.nextLine();
            //System.out.println(Lines);
            i++;

0 个答案:

没有答案