使用 nextLine 方法:

简介: 使用 nextLine 方法:

使用 nextLine 方法:
ScannerDemo.java 文件代码:
import java.util.Scanner;

public class ScannerDemo {

public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    // 从键盘接收数据

    // nextLine方式接收字符串
    System.out.println("nextLine方式接收:");
    // 判断是否还有输入
    if (scan.hasNextLine()) {
        String str2 = scan.nextLine();
        System.out.println("输入的数据为:" + str2);
    }
    scan.close();
}

}
执行以上程序输出结果为:

$ javac ScannerDemo.java
$ java ScannerDemo
nextLine方式接收:
runoob com
输入的数据为:runoob com
可以看到 com 字符串输出。

目录
相关文章
|
5月前
|
移动开发
nextInt()接收整数后再用nextLine()接收字符串,导致nextLine()方法无效
nextInt()接收整数后再用nextLine()接收字符串,导致nextLine()方法无效
53 1
|
8月前
关于Scanner的一些理解
关于Scanner的一些理解
65 2
|
8月前
|
程序员
Scanner类中next()和nextLine()的区别
Scanner类中next()和nextLine()的区别
91 0
Scanner中nextLine()在nextInt()的几种解决方式
Scanner中nextLine()在nextInt()的几种解决方式
101 0
|
Java
Scanner的基本用法
Scanner的基本用法
123 0
键盘输入Scanner类方法属性使用
键盘输入Scanner类方法属性使用
75 0
next 与 nextLine 方法的区别
next 与 nextLine 方法的区别
350 0
next 与 nextLine 方法的区别
println输入和toString方法的重写
println输入和toString方法的重写
131 0
next()和nextLine()的一些小问题
next()和nextLine()的一些小问题
152 0
next()和nextLine()的一些小问题

热门文章

最新文章