如何使用java.util.Scanner正确扫描用户输入?

时间:2016-04-23 13:03:50

标签: java java.util.scanner next lowercase scanline

我已实现以下代码以小写字符打印短语:

import java.util.Scanner;

public class LowerCase{ 
    public static void main (String[] args) {
        String input, output = "", inter;
        Scanner scan, lineScan;
        scan = new Scanner(System.in); // Scan from the keyboard
        System.out.println("Enter a line of text: ");
        input = scan.nextLine(); // Scan the line of text

        lineScan = new Scanner(input);
        while (lineScan.hasNext()) {
            inter = scan.next();
            output += inter.toLowerCase() + " ";
        }
        System.out.println(output);
    }
}

我不知道我的实施有什么问题!它正常编译,但是当我运行代码并输入输入短语时,它会冻结。

3 个答案:

答案 0 :(得分:2)

您的循环正在等待具有一个扫描仪的行,但是从另一个Scanner读取行(因此是无限循环)。此

while (lineScan.hasNext()) {
    inter= scan.next();

应该是

while (lineScan.hasNext()) {
    inter= lineScan.next();

答案 1 :(得分:1)

您不需要两个扫描程序对象来实现这对您有用的输出

scan= new Scanner(System.in); //scan from the keyboard
System.out.println("Enter a line of text: ");
input=scan.nextLine(); //scan the line of text


System.out.println(input.toLowerCase());
scan.close();

答案 2 :(得分:1)

我推荐一种不同的方法:

import java.util.*;
public class something
  {
      static Scanner reader=new Scanner(System.in);
      public static void main(String[] args)
      {
          System.out.println("type something (string)");
          String text = reader.next();  // whatever the user typed is stored as a string here
          System.out.println(text);

          System.out.println("type something (int)");
          int num = reader.nextInt();  // whatever the user typed is stored as an int here
          System.out.println(num);

          System.out.println("type something (double)");
          double doub = reader.nextDouble(); // whatever the user typed is stored as double here
          System.out.println(doub);
        }
    }

这是我获取用户输入的一些示例代码。