Hi Team,

I am wondering how to enter a string with White Space and Store it in a String variable.

For example : I have created a string named "name".

String name;

I want to Store "Michael Jackson" in the String "name". I couldn't do it. My program Just accepts Michael and not Jackson.

here is my code ;

import java.util.Scanner;

public class Stringtwo

{

public static void main(String[] args)

{

String name;

Scanner scannedInfo=new Scanner(System.in);

name=scannedInfo.next();

System.out.println(name);

}

}