Home Answers Viewqa Java-Interview-Questions getch() method in java

 
 


saba s
getch() method in java
1 Answer(s)      2 years and 6 months ago
Posted in : Java Interview Questions

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 Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.