1.包:
import Java.util.Scanner
2.使用方法:
Scanner reader=new Scanner(System.in);
然后reader对象调用下列方法(函数),读取用户在命令行输入的各种数据类型:
nextByte(),
nextDouble(),
nextFloat(),
nextInt(),
nextLine(),
nextLong(),
nextShort()
注:上面由next()方法转化而来,空格,TAB键结束
上述方法执行时都会造成堵塞,等待用户在命令行输入数据回车确认.
例如,用户在键盘输入
12.34,
hasNextFloat()的值是true,而hasNextInt()的值是false. NextLine()等待用户输入一个文
本行并且回车,该方法得到一个String类型的数据。相比nextLine()回车确认,按照行读为string
3.实例
//逐行扫描文件,并逐行输出
public static void main(String[] args) throws FileNotFoundException {
InputStream in = new FileInputStream(new File("C:\\AutoSubmit.java"));
Scanner s = new Scanner(in);
while(s.hasNextLine()){
System.out.println(s.nextLine());
}
}
<