I've faced an issue when I'm trying to get the user input using Scanner:

import java.util.Scanner;

public class Main
{
    public static Scanner input = new Scanner(System.in);
    public static void main(String[] args)
    {
        System.out.print("Insert a number: ");
        int number = input.nextInt();
        System.out.print("Text1: ");
        String text1 = input.nextLine();
        System.out.print("Text2: ");
        String text2 = input.nextLine();
    }
}

Output:

Insert a number: 55
Text1: Text2: Hi there!

As you can see, the program skipped String text1 = input.nextLine();. What is the problem here? and how to solve this issue?

link|improve this question

1  
Related: stackoverflow.com/questions/4708219/… – James Poulson Aug 14 '11 at 12:27
feedback

3 Answers

up vote 4 down vote accepted

Try it like that:

   System.out.print("Insert a number: ");
   int number = input.nextInt();
   input.nextLine(); // This line you have to add (It consumes the \n character)
   System.out.print("Text1: ");
   String text1 = input.nextLine();
   System.out.print("Text2: ");
   String text2 = input.nextLine();

The problem is with the input.nextInt() command it only reads the int value. So when you continue reading with input.nextLine() you receive the "\n" Enter key. So to skip this you have to add the input.nextLine(). Hope this should be clear now.

link|improve this answer
umm seems a solution, making the skipped line non-used nextLine, but I still need an explanation of this behaviour – Eng.Fouad Aug 14 '11 at 12:25
feedback

It's because when you enter a number then press Enter, input.nextInt() consumes only the number, not the "end of line". When input.nextLine() executes, it consumes the "end of line" still in the buffer from the first input.

Instead, use input.nextLine() immediately after input.nextInt()

link|improve this answer
feedback

You have to create a new object of Scanner class before each time of input.

your code should like :

    import java.util.Scanner;

    public class Main
    {
        public static Scanner input = new Scanner(System.in);
        public static void main(String[] args)
        {
            System.out.print("Insert a number: ");
            int number = input.nextInt();
            System.out.print("Text1: ");

            // Here new Scanner class inserted below 
            Scanner input2 = new Scanner(System.in);

            String title = input2.nextLine();
            System.out.print("Text2: ");

           // Here new Scanner class inserted below 
            Scanner input3 = new Scanner(System.in);

            String director = input3.nextLine();
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.