DataInputStream不推荐使用readLine()方法
问题内容:
我在java 6上。DataInputStream in = new DataInputStream(System.in);
用于读取用户输入。不推荐使用readLine()的情况。读取用户价值的方法是什么?
DataInputStream in = new DataInputStream(System.in);
int num;
try
{
num = Integer.parseInt(in.readLine()); //this works
num = Integer.parseInt(in); //just in doesnt work.
}
catch(Exception e)
{
}
请在不建议使用readLine()时进行解释。
问题答案: