I have a string variable that I use to get input values. for ex.
Scanner in=new Scanner(System.in); 
varName=in.next(); 
when I give value as (John jony) it only displays John. Any way to get whole string?
I have a string variable that I use to get input values. for ex.
Scanner in=new Scanner(System.in); 
varName=in.next(); 
when I give value as (John jony) it only displays John. Any way to get whole string?
 
    
     
    
    Use the following instead:
    Scanner in=new Scanner(System.in); 
    String text = in.nextLine();        
    System.out.println( text ); 
"in.nextLine()" reads in a whole line
