| Author |
how to read int or any input value entered in console using DataInputStream??
|
prasad kakani
Ranch Hand
Joined: Jul 15, 2008
Posts: 59
|
|
Hello
Could you please tell me how to read the int or any input value which is entered in console while executing the program, using DataInputStream..
suppose System.out.println("Enter the Range:");
DataInputStream dis = new DataInputStream(System.in);
int range = dis.read();
System.out.println("The range is "+ range);
i think i am doing something wrong here..please suggest me..
Thanks
Prasad
|
 |
Christian Zillmann
Greenhorn
Joined: Jun 24, 2009
Posts: 2
|
|
|
Why using DataInputStream for that ?
|
 |
Gareth Lloyd
Greenhorn
Joined: Jun 25, 2009
Posts: 5
|
|
Hey, I think you need to use readInt() rather than read()
Take a look at the JavaDoc for DataInputStream's various methods:
http://java.sun.com/j2se/1.5.0/docs/api/java/io/DataInputStream.html
|
 |
 |
|
|
subject: how to read int or any input value entered in console using DataInputStream??
|
|
|