如何在Java中获取用户输入?

时间:2011-03-13 04:59:38

标签: java input multiplatform

我试图创建一个计算器,但我无法让它工作,因为我不知道如何获取用户输入

如何以Java形式获取用户输入?

30 个答案:

答案 0 :(得分:386)

最简单的方法之一是使用Scanner对象,如下所示:

import java.util.Scanner;

Scanner reader = new Scanner(System.in);  // Reading from System.in
System.out.println("Enter a number: ");
int n = reader.nextInt(); // Scans the next token of the input as an int.
//once finished
reader.close();

答案 1 :(得分:306)

您可以根据要求使用以下任何选项。

Scanner class

import java.util.Scanner; 
Scanner scan = new Scanner(System.in);
String s = scan.next();
int i = scan.nextInt();

BufferedReaderInputStreamReader

import java.io.BufferedReader;
import java.io.InputStreamReader;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine();
int i = Integer.parseInt(br.readLine());

DataInputStream class

import java.io.DataInputStream;
DataInputStream dis = new DataInputStream(System.in);
int i = dis.readInt();

readLine类中的DataInputStream方法已被弃用。要获取String值,您应该使用以前的BufferedReader

解决方案

Console class

import java.io.Console;
Console console = System.console();
String s = console.readLine();
int i = Integer.parseInt(console.readLine());

显然,这种方法在某些IDE中效果不佳。

答案 2 :(得分:44)

您可以使用Scanner类或控制台类

Console console = System.console();
String input = console.readLine("Enter input:");

答案 3 :(得分:19)

您可以使用BufferedReader获取用户输入。

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String accStr;  

System.out.println("Enter your Account number: ");
accStr = br.readLine();

它会在String中存储accStr值,因此您必须使用Integer.parseInt将其解析为int

int accInt = Integer.parseInt(accStr);

答案 4 :(得分:16)

以下是获取键盘输入的方法:

Scanner scanner = new Scanner (System.in);
System.out.print("Enter your name");  
name = scanner.next(); // Get what the user types.

答案 5 :(得分:14)

您可以创建一个简单的程序来询问用户的姓名并打印回复使用的输入。

或者要求用户输入两个数字,您可以添加,乘法,减去或除以这些数字,并打印用户输入的答案,就像计算器的行为一样。

所以你需要Scanner课程。您必须import java.util.Scanner;并在您需要使用的代码中

Scanner input = new Scanner(System.in);

输入是变量名称。

Scanner input = new Scanner(System.in);

System.out.println("Please enter your name : ");
s = input.next(); // getting a String value

System.out.println("Please enter your age : ");
i = input.nextInt(); // getting an integer

System.out.println("Please enter your salary : ");
d = input.nextDouble(); // getting a double

了解这种情况有何不同:input.next();i = input.nextInt();d = input.nextDouble();

根据String,int和double对其余部分采用相同的方式。不要忘记代码顶部的import语句。

另请参阅博文"Scanner class and getting User Inputs"

答案 6 :(得分:8)

要阅读一行或一个字符串,您可以使用BufferedReader对象和InputStreamReader对象,如下所示:

BufferedReader bufferReader = new BufferedReader(new InputStreamReader(System.in));
String inputLine = bufferReader.readLine();

答案 7 :(得分:8)

此处,程序要求用户输入数字。之后,程序打印数字的数字和数字的总和。

import java.util.Scanner;

public class PrintNumber {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int num = 0;
        int sum = 0;

        System.out.println(
            "Please enter a number to show its digits");
        num = scan.nextInt();

        System.out.println(
            "Here are the digits and the sum of the digits");
        while (num > 0) {
            System.out.println("==>" + num % 10);
            sum += num % 10;
            num = num / 10;   
        }
        System.out.println("Sum is " + sum);            
    }
}

答案 8 :(得分:6)

以下是使用java.util.Scanner的问题中的程序:

import java.util.Scanner;

public class Example {
    public static void main(String[] args) {
        int input = 0;
        System.out.println("The super insano calculator");
        System.out.println("enter the corrosponding number:");
        Scanner reader3 = new Scanner(System.in);
        System.out.println(
            "1. Add | 2. Subtract | 3. Divide | 4. Multiply");

        input = reader3.nextInt();

        int a = 0, b = 0;

        Scanner reader = new Scanner(System.in);
        System.out.println("Enter the first number");
        // get user input for a
        a = reader.nextInt();

        Scanner reader1 = new Scanner(System.in);
        System.out.println("Enter the scend number");
        // get user input for b
        b = reader1.nextInt();

        switch (input){
            case 1:  System.out.println(a + " + " + b + " = " + add(a, b));
                     break;
            case 2:  System.out.println(a + " - " + b + " = " + subtract(a, b));
                     break;
            case 3:  System.out.println(a + " / " + b + " = " + divide(a, b));
                     break;
            case 4:  System.out.println(a + " * " + b + " = " + multiply(a, b));
                     break;
            default: System.out.println("your input is invalid!");
                     break;
        }
    }

    static int      add(int lhs, int rhs) { return lhs + rhs; }
    static int subtract(int lhs, int rhs) { return lhs - rhs; }
    static int   divide(int lhs, int rhs) { return lhs / rhs; }
    static int multiply(int lhs, int rhs) { return lhs * rhs; }
}

答案 9 :(得分:5)

只是一个额外的细节。如果您不想冒内存/资源泄漏的风险,则应在完成后关闭扫描程序流:

myScanner.close();

请注意,java 1.7及更高版本将此视为编译警告(不要问我怎么知道: - )

答案 10 :(得分:5)

Scanner input=new Scanner(System.in);
int integer=input.nextInt();
String string=input.next();
long longInteger=input.nextLong();

答案 11 :(得分:5)

使用System类获取输入。

http://fresh2refresh.com/java-tutorial/java-input-output/

  

如何从键盘接受数据?

     

我们需要三个对象,

     
      
  1. System.in
  2.   
  3. InputStreamReader的
  4.   
  5. 的BufferedReader

         
        
    • InputStreamReader和BufferedReader是java.io包中的类。
    •   
    • System.in是一个InputStream对象,从键盘以字节的形式接收数据。
    •   
    • 然后InputStreamReader读取字节并将它们解码为字符。
    •   
    • 然后最后BufferedReader对象从字符输入流中读取文本,缓冲字符,以便有效地读取字符,数组和行。
    •   
  6.   
InputStreamReader inp = new InputStreamReader(system.in);
BufferedReader br = new BufferedReader(inp);

答案 12 :(得分:4)

最好的两个选项是BufferedReaderScanner

使用最广泛的方法是Scanner,我个人更喜欢这种方法,因为它简单易行,并且具有将文本解析为原始数据的强大功能。

使用扫描仪的优势

  • 易于使用Scanner
  • 轻松输入数字(int,short,byte,float,long和double)
  • 不检查异常,这更加方便。程序员要文明起来,并指定或捕获异常。
  • 能够读取行,空白和正则表达式分隔的令牌

BufferedInputStream的优点


总体而言,每种输入法都有不同的用途。

  • 如果要输入大量数据,BufferedReader可能是 更适合您

  • 如果您输入大量数字,Scanner会自动解析 这很方便

对于更基本的用途,我建议使用Scanner,因为它更易于使用并且更易于编写程序。这是一个如何创建Scanner的快速示例。我将在下面提供一个综合示例,说明如何使用Scanner

Scanner scanner = new Scanner (System.in); // create scanner
System.out.print("Enter your name");       // prompt user
name = scanner.next();                     // get user input

(有关BufferedReader的更多信息,请参见How to use a BufferedReaderReading lines of Chars


java.util.Scanner

import java.util.InputMismatchException; // import the exception catching class
import java.util.Scanner; // import the scanner class

public class RunScanner {

    // main method which will run your program
    public static void main(String args[]) {

        // create your new scanner
        // Note: since scanner is opened to "System.in" closing it will close "System.in". 
        // Do not close scanner until you no longer want to use it at all.
        Scanner scanner = new Scanner(System.in);

        // PROMPT THE USER
        // Note: when using scanner it is recommended to prompt the user with "System.out.print" or "System.out.println"
        System.out.println("Please enter a number");

        // use "try" to catch invalid inputs
        try {

            // get integer with "nextInt()"
            int n = scanner.nextInt();


            System.out.println("Please enter a decimal"); // PROMPT
            // get decimal with "nextFloat()"
            float f = scanner.nextFloat();


            System.out.println("Please enter a word"); // PROMPT
            // get single word with "next()"
            String s = scanner.next();

            // ---- Note: Scanner.nextInt() does not consume a nextLine character /n 
            // ---- In order to read a new line we first need to clear the current nextLine by reading it:
            scanner.nextLine(); 
            // ----
            System.out.println("Please enter a line"); // PROMPT
            // get line with "nextLine()"
            String l = scanner.nextLine();


            // do something with the input
            System.out.println("The number entered was: " + n);
            System.out.println("The decimal entered was: " + f);
            System.out.println("The word entered was: " + s);
            System.out.println("The line entered was: " + l);


        }
        catch (InputMismatchException e) {
            System.out.println("\tInvalid input entered. Please enter the specified input");
        }

        scanner.close(); // close the scanner so it doesn't leak
    }
}

注意:其他类,例如ConsoleDataInputStream也是可行的选择。

Console具有一些强大的功能,例如读取密码的能力,但是并非在所有IDE(例如Eclipse)中都可用。发生这种情况的原因是因为Eclipse将您的应用程序作为后台进程而不是系统控制台的顶级进程来运行。 Here is a link是一个有关如何实现Console类的有用示例。

DataInputStream主要用于以与机器无关的方式从基础输入流中读取输入作为原始数据类型。 DataInputStream通常用于读取二进制数据。它还提供了用于读取某些数据类型的便捷方法。例如,它具有读取UTF字符串的方法,该字符串中可以包含任意数量的行。

但是,它是一个更复杂的类,更难以实现,因此不建议初学者使用。 Here is a link是一个有用的示例,说明如何实现DataInputStream

答案 13 :(得分:4)

import java.util.Scanner; 

class Daytwo{
    public static void main(String[] args){
        System.out.println("HelloWorld");

        Scanner reader = new Scanner(System.in);
        System.out.println("Enter the number ");

        int n = reader.nextInt();
        System.out.println("You entered " + n);

    }
}

答案 14 :(得分:3)

import java.util.Scanner;

public class Myapplication{
     public static void main(String[] args){
         Scanner in = new Scanner(System.in);
         int a;
         System.out.println("enter:");
         a = in.nextInt();
         System.out.println("Number is= " + a);
     }
}

答案 15 :(得分:3)

在java中获取输入非常简单,您只需要:

import java.util.Scanner;

class GetInputFromUser
{
    public static void main(String args[])
    {
        int a;
        float b;
        String s;

        Scanner in = new Scanner(System.in);

        System.out.println("Enter a string");
        s = in.nextLine();
        System.out.println("You entered string " + s);

        System.out.println("Enter an integer");
        a = in.nextInt();
        System.out.println("You entered integer " + a);

        System.out.println("Enter a float");
        b = in.nextFloat();
        System.out.println("You entered float " + b);
    }
}

答案 16 :(得分:3)

throws IOException旁添加main(),然后

DataInputStream input = new DataInputStream(System.in);
System.out.print("Enter your name");
String name = input.readLine();

答案 17 :(得分:3)

Scanner input = new Scanner(System.in);
String inputval = input.next();

答案 18 :(得分:3)

以下是已接受答案的更为发达的版本,它解决了两个常见需求:

  • 重复收集用户输入,直到输入退出值
  • 处理无效的输入值(本例中为非整数)

<强>代码

package inputTest;

import java.util.Scanner;
import java.util.InputMismatchException;

public class InputTest {
    public static void main(String args[]) {
        Scanner reader = new Scanner(System.in);
        System.out.println("Please enter integers. Type 0 to exit.");

        boolean done = false;
        while (!done) {
            System.out.print("Enter an integer: ");
            try {
                int n = reader.nextInt();
                if (n == 0) {
                    done = true;
                }
                else {
                    // do something with the input
                    System.out.println("\tThe number entered was: " + n);
                }
            }
            catch (InputMismatchException e) {
                System.out.println("\tInvalid input type (must be an integer)");
                reader.nextLine();  // Clear invalid input from scanner buffer.
            }
        }
        System.out.println("Exiting...");
        reader.close();
    }
}

示例

Please enter integers. Type 0 to exit.
Enter an integer: 12
    The number entered was: 12
Enter an integer: -56
    The number entered was: -56
Enter an integer: 4.2
    Invalid input type (must be an integer)
Enter an integer: but i hate integers
    Invalid input type (must be an integer)
Enter an integer: 3
    The number entered was: 3
Enter an integer: 0
Exiting...

请注意,如果没有nextLine(),错误输入将在无限循环中重复触发相同的异常。您可能希望根据具体情况使用next(),但要知道像this has spaces这样的输入会产生多个异常。

答案 19 :(得分:2)

可以是这样的......

public static void main(String[] args) {
    Scanner reader = new Scanner(System.in);

    System.out.println("Enter a number: ");
    int i = reader.nextInt();
    for (int j = 0; j < i; j++)
        System.out.println("I love java");
}

答案 20 :(得分:2)

您可以使用BufferedReader获取此类用户输入:

    InputStreamReader inp = new InputStreamReader(System.in);
    BufferedReader br = new BufferedReader(inp);
    // you will need to import these things.

这就是你应用它们的方式

    String name = br.readline(); 

因此,当用户在控制台中输入他的名字时,&#34;字符串名称&#34;将存储该信息。

如果是您要存储的号码,代码将如下所示:

    int x = Integer.parseInt(br.readLine());

跳这个有帮助!

答案 21 :(得分:1)

这是一个使用System.in.read()函数的简单代码。这段代码只写出输入的内容。如果您只想输入一次,可以摆脱while循环,如果您愿意,可以将答案存储在字符数组中。

package main;

import java.io.IOException;

public class Root 
{   
    public static void main(String[] args)
    {
        new Root();
    }

    public Root()
    {
        while(true)
        {
            try
            {
                for(int y = 0; y < System.in.available(); ++y)
                { 
                    System.out.print((char)System.in.read()); 
                }
            }
            catch(IOException ex)
            {
                ex.printStackTrace(System.out);
                break;
            }
        }
    }   
}    

答案 22 :(得分:1)

我喜欢以下内容:

public String readLine(String tPromptString) {
    byte[] tBuffer = new byte[256];
    int tPos = 0;
    System.out.print(tPromptString);

    while(true) {
        byte tNextByte = readByte();
        if(tNextByte == 10) {
            return new String(tBuffer, 0, tPos);
        }

        if(tNextByte != 13) {
            tBuffer[tPos] = tNextByte;
            ++tPos;
        }
    }
}

例如,我会这样做:

String name = this.readLine("What is your name?")

答案 23 :(得分:0)

获取用户输入的最简单方法是使用扫描仪。这是应如何使用的示例:

import java.util.Scanner;
public class main {
public static void main(String[]args) {
Scanner sc=new Scanner(System.in);
int a;
String b;
System.out.println("Type an integer here: ");
a=sc.nextInt();
System.out.println("Type anything here:");
b=sc.nextLine();

代码行import java.util.Scanner;告知程序程序员将在代码中使用用户输入。就像它说的那样,它导入了扫描仪实用程序。 Scanner sc=new Scanner(System.in);告诉程序开始用户输入。执行完此操作后,必须创建不带值的字符串或整数,然后将其放在a=sc.nextInt();a=sc.nextLine();行中。这为变量提供了用户输入的值。然后,您可以在代码中使用它。希望这会有所帮助。

答案 24 :(得分:0)

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        System.out.println("Welcome to the best program in the world! ");
        while (true) {
            System.out.print("Enter a query: ");
            Scanner scan = new Scanner(System.in);
            String s = scan.nextLine();
            if (s.equals("q")) {
                System.out.println("The program is ending now ....");
                break;
            } else  {
                System.out.println("The program is running...");
            }
        }
    }
}

答案 25 :(得分:0)

使用 JOptionPane 可以实现。

Int a =JOptionPane.showInputDialog(null,"Enter number:");

答案 26 :(得分:0)

您可以使用Scanner获得用户输入。您可以针对不同的数据类型(例如,next()的{​​{1}}或String的{​​{1}})使用适用于不同数据类型的正确方法进行正确的输入验证。

nextInt()

答案 27 :(得分:0)

可以使用Scanner输入键盘,因为其他人已经发布了。但是在这些高度图形化的时代,使计算器没有图形用户界面(GUI)毫无意义。

在现代Java中,这意味着使用Scene Builder之类的JavaFX拖放工具来布置类似于计算器控制台的GUI。 请注意,使用Scene Builder直观上很容易,并且不需要其他Java技能即可使用其事件处理程序,而您已经拥有的。

对于用户输入,您应该在GUI控制台的顶部具有宽的TextField。

这是用户输入要在其上执行功能的数字的地方。 在TextField下方,您将具有一系列功能按钮,这些按钮可以执行基本的功能(即加/减/乘/除和存储/调用/清除)。 放置完GUI后,您可以添加将每个按钮功能链接到其Java实现的“控制器”引用,例如,对项目控制器类中的方法的调用。

This video有点老,但仍然显示了Scene Builder的易用性。

答案 28 :(得分:-1)

class ex1 {    
    public static void main(String args[]){
        int a, b, c;
        a = Integer.parseInt(args[0]);
        b = Integer.parseInt(args[1]);
        c = a + b;
        System.out.println("c = " + c);
    }
}
// Output  
javac ex1.java
java ex1 10 20 
c = 30

答案 29 :(得分:-1)

import java.util.Scanner;

public class userinput {
    public static void main(String[] args) {        
        Scanner input = new Scanner(System.in);

        System.out.print("Name : ");
        String name = input.next();
        System.out.print("Last Name : ");
        String lname = input.next();
        System.out.print("Age : ");
        byte age = input.nextByte();

        System.out.println(" " );
        System.out.println(" " );

        System.out.println("Firt Name: " + name);
        System.out.println("Last Name: " + lname);
        System.out.println("      Age: " + age);
    }
}