Ricerca…


Leggere l'input dell'utente dalla console

Utilizzando BufferedReader :

System.out.println("Please type your name and press Enter.");

BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
try {
    String name = reader.readLine();
    System.out.println("Hello, " + name + "!");
} catch(IOException e) {
    System.out.println("An error occurred: " + e.getMessage());
}

Le seguenti importazioni sono necessarie per questo codice:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

Utilizzo dello Scanner :

Java SE 5
System.out.println("Please type your name and press Enter");

Scanner scanner = new Scanner(System.in);
String name = scanner.nextLine();

System.out.println("Hello, " + name + "!");

La seguente importazione è necessaria per questo esempio:

import java.util.Scanner;

Per leggere più di una riga, richiamare scanner.nextLine() ripetutamente:

System.out.println("Please enter your first and your last name, on separate lines.");
    
Scanner scanner = new Scanner(System.in);
String firstName = scanner.nextLine();
String lastName = scanner.nextLine();
    
System.out.println("Hello, " + firstName + " " + lastName + "!");

Esistono due metodi per ottenere Strings , next() e nextLine() . next() restituisce il testo fino al primo spazio (noto anche come "token"), e nextLine() restituisce tutto il testo immesso dall'utente fino a quando non si preme enter.

Scanner fornisce anche metodi di utilità per la lettura di tipi di dati diversi da String . Questi includono:

scanner.nextByte();
scanner.nextShort();
scanner.nextInt();
scanner.nextLong();
scanner.nextFloat();
scanner.nextDouble();
scanner.nextBigInteger();
scanner.nextBigDecimal();

Prefixing di uno qualsiasi di questi metodi con has (come in hasNextLine() , hasNextInt() ) restituisce true se lo stream ha più del tipo di richiesta. Nota: questi metodi causeranno il crash del programma se l'input non è del tipo richiesto (ad esempio, digitando "a" per nextInt() ). Puoi usare try {} catch() {} per impedirlo (vedi: Eccezioni )

Scanner scanner = new Scanner(System.in); //Create the scanner
scanner.useLocale(Locale.US); //Set number format excepted
System.out.println("Please input a float, decimal separator is .");
if (scanner.hasNextFloat()){ //Check if it is a float
    float fValue = scanner.nextFloat(); //retrive the value directly as float
    System.out.println(fValue + " is a float");
}else{
    String sValue = scanner.next(); //We can not retrive as float
    System.out.println(sValue + " is not a float");
}

Utilizzando System.console :

Java SE 6
String name = System.console().readLine("Please type your name and press Enter%n");

System.out.printf("Hello, %s!", name);

//To read passwords (without echoing as in unix terminal)
char[] password = System.console().readPassword();

Vantaggi :

  • I metodi di lettura sono sincronizzati
  • È possibile utilizzare la sintassi della stringa del formato

Nota : funziona solo se il programma viene eseguito da una riga di comando reale senza reindirizzare gli stream di input e output standard. Non funziona quando il programma viene eseguito da determinati IDE, come ad esempio Eclipse. Per il codice che funziona all'interno degli IDE e con il reindirizzamento del flusso, vedere gli altri esempi.

Implementazione del comportamento di base della riga di comando

Per i prototipi di base o il comportamento di base della riga di comando, il seguente ciclo è utile.

public class ExampleCli {

    private static final String CLI_LINE   = "example-cli>"; //console like string

    private static final String CMD_QUIT   = "quit";    //string for exiting the program
    private static final String CMD_HELLO  = "hello";    //string for printing "Hello World!" on the screen
    private static final String CMD_ANSWER = "answer";    //string for printing 42 on the screen

    public static void main(String[] args) {
        ExampleCli claimCli = new ExampleCli();    // creates an object of this class

        try {
            claimCli.start();    //calls the start function to do the work like console
        }
        catch (IOException e) {
            e.printStackTrace();    //prints the exception log if it is failed to do get the user input or something like that
        }
    }

    private void start() throws IOException {
        String cmd = "";
        
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        while (!cmd.equals(CMD_QUIT)) {    // terminates console if user input is "quit"
            System.out.print(CLI_LINE);    //prints the console-like string 

            cmd = reader.readLine();    //takes input from user. user input should be started with "hello",  "answer" or "quit"
            String[] cmdArr = cmd.split(" ");

            if (cmdArr[0].equals(CMD_HELLO)) {    //executes when user input starts with "hello"
                hello(cmdArr);
            }
            else if (cmdArr[0].equals(CMD_ANSWER)) {    //executes when user input starts with "answer"
                answer(cmdArr);
            }
        }
    }
    
    // prints "Hello World!" on the screen if user input starts with "hello"
    private void hello(String[] cmdArr) {
        System.out.println("Hello World!");
    }
    
    // prints "42" on the screen if user input starts with "answer"
    private void answer(String[] cmdArr) {
        System.out.println("42");
    }
}

Allineare le stringhe in console

Il metodo PrintWriter.format (chiamato tramite System.out.format ) può essere utilizzato per stampare stringhe allineate nella console. Il metodo riceve una String con le informazioni sul formato e una serie di oggetti da formattare:

String rowsStrings[] = new String[] {"1", 
                                     "1234", 
                                     "1234567", 
                                     "123456789"};

String column1Format = "%-3s";    // min 3 characters, left aligned
String column2Format = "%-5.8s";  // min 5 and max 8 characters, left aligned
String column3Format = "%6.6s";   // fixed size 6 characters, right aligned
String formatInfo = column1Format + " " + column2Format + " " + column3Format;

for(int i = 0; i < rowsStrings.length; i++) {
    System.out.format(formatInfo, rowsStrings[i], rowsStrings[i], rowsStrings[i]);
    System.out.println();
}

Produzione:

1   1          1
1234 1234    1234
1234567 1234567 123456
123456789 12345678 123456

L'utilizzo di stringhe di formato con dimensioni fisse consente di stampare le stringhe in un aspetto simile a una tabella con colonne a dimensione fissa:

String rowsStrings[] = new String[] {"1", 
                                     "1234", 
                                     "1234567", 
                                     "123456789"};

String column1Format = "%-3.3s";  // fixed size 3 characters, left aligned
String column2Format = "%-8.8s";  // fixed size 8 characters, left aligned
String column3Format = "%6.6s";   // fixed size 6 characters, right aligned
String formatInfo = column1Format + " " + column2Format + " " + column3Format;

for(int i = 0; i < rowsStrings.length; i++) {
    System.out.format(formatInfo, rowsStrings[i], rowsStrings[i], rowsStrings[i]);
    System.out.println();
}

Produzione:

1   1             1
123 1234       1234
123 1234567  123456
123 12345678 123456

Formattare gli esempi di stringhe

  • %s : solo una stringa senza formattazione
  • %5s : formatta la stringa con un minimo di 5 caratteri; se la stringa è più corta sarà riempita a 5 caratteri e allineata a destra
  • %-5s : formatta la stringa con un minimo di 5 caratteri; se la stringa è più corta sarà riempita a 5 caratteri e allineata a sinistra
  • %5.10s : formatta la stringa con un minimo di 5 caratteri e un massimo di 10 caratteri; se la stringa è più corta di 5 sarà riempita a 5 caratteri e allineata a destra ; se la stringa è più lunga di 10, verrà troncata a 10 caratteri e allineata a destra
  • %-5.5s : formatta la stringa con una dimensione fissa di 5 caratteri (il minimo e il massimo sono uguali); se la stringa è più corta di 5 sarà riempita a 5 caratteri e allineata a sinistra ; se la stringa è più lunga di 5 verrà troncata a 5 caratteri e allineata a sinistra


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow