首页 > 代码库 > Java: Best Way to read a file

Java: Best Way to read a file

经常在各种平台的online test里面不熟悉STDIN, STOUT,下面举个例子:技术分享

技术分享

另外一个例子:从system.in读取一行作为输入String, 得到返回结果之后把它写入到指定位置的文件当中

技术分享

1   Scanner sc = new Scanner(new File("myNumbers"));2       while (sc.hasNextLong()) {3           long aLong = sc.nextLong();4       }

 

Java: Best Way to read a file