string input using scanner code example

Example 1: how to use scanners in java

import java.util.Scanner;

Public class Scanner {
	Public static void main(String[] args) {
    	// Scanner *scanner name here* = new Scanner(System.in);
      	Scanner scan = new Scanner(System.in);
      	System.out.println("Type anything and the scanner will take that input and print it");
      	String next = scan.next();
      	System.out.println(next);
    } 
}

Example 2: User input (scanner)

String line = scanner.nextLine();
int age = Integer.parseInt(line); // Exception-t

Tags:

Java Example