Input via java.util.Scanner
602823Oct 11 2007 — edited Aug 20 2008I know it's possible for JDeveoper 10G to take input via BufferedReader, is the same possible using the scanner class as in:
Scanner input = new Scanner(System.in);
System.out.println("Enter your age");
int age = input.nextInt();
System.out.println("You are " + age);
JDeveloper can't seem to take imput from the scanner class. Is there a way arround this?
Andrew.