Scanner 一个实例化的文件 关键是怎么判断 一行有几个 具体类型的数字 我用File docs = new File("C:\\Users\\Administrator\\Desktop\\qhshilin.txt"); Scanner feileScanner=new Scanner(docs); Scanner tempsScanner=null; int count=0; while (feileScanner.hasNextLine()) { count++; tempsScanner=new Scanner(feileScanner.nextLine()); while (tempsScanner.hasNextInt()) { System.out.println(tempsScanner.nextInt()); } } System.out.println("一共有:"+count+"行数据!检查结束"); 只能输出 某行开头的具体类型的数字 后面的数字 或者其他行的数字不能输出!请问有什么方法可以解决!谢谢
添加回答
举报
0/150
提交
取消