大家好,又见面了,我是你们的朋友全栈君。
1.导入包,idea可自动导入
import java.util.Scanner;
2.创建一个扫描器对象,用于接收用户输入的数据
Scanner scanner=new Scanner(System.in);
3.创建完成后的接收以及判断 <1>用next方法接收
System.out.println("使用next方式接收:");
//判断用户有没有输入字符串
if(scanner.hasNext()){
String str=scanner.next();//接收用户的输入
System.out.println("输出的内容为:"+str);
}
这里如果输入hello world就只会输出hello,中间的空格以及后面的内容都不能输出。
<2>用nextLine方法输出
import java.util.Scanner;
public class Demo02 {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
//创建一个扫描器对象,用于接收键盘数据
System.out.println("使用nextline方式接收数据:");
//判断用户有没有输入字符串
if (scanner.hasNextLine())
{
String str=scanner.nextLine();//等待用户输入
System.out.println("输出的内容为:"+str);
}
scanner.close();
}
}
Scanner类next() 方法和nextLine() 方法的区别 next(): 1.一定要读取到有效字符后才可以结束输入 2.对输入有效字符之前遇到的空白,next() 方法会自动将其去掉 3.只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符 4.next() 不能得到带有空格的字符串 nextLine() 1.以Enter为结束符,也就是说,nextLine() 方法返回的是输入回车之前的所有字符 2.可以获得空格符
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/156437.html原文链接:https://javaforall.cn