getch() method in java

getch() method in java

does someone know how can i obtain the getch() function in java?

View Answers

November 20, 2010 at 1:14 PM

Hi Friend,

In java, you can use the method next() of Scanner class.

Here is an example:

import java.util.*;

class Hello{
    public static void main(String[] args) {
        Scanner input=new Scanner(System.in);
        System.out.println("Enter: ");
        String  st=input.next();
        System.out.println("You have entered: "+st);
    }
}

Thanks









Related Tutorials/Questions & Answers:

Ads