java的输入
大家知道java中的输出语句是System.out.println(“写上要输出的语句”);
可有没有知道java中的输入语句又是怎样的呢?
找了很多的资料终于被我找到了点头绪了..
哈哈 ..好高兴...
看看这个的输入 .
public static void main(String[] args) throws IOException{
InputStreamReader reader = new InputStreamReader(System.in);
BufferedReader input = new BufferedReader(reader);
System.out.print("Enter the number: ");
String text = input.readLine();
}
这段代码实在太长了。
我想简化点.
能不能不要那个throws IOException 把那个去掉..结果是程序无法编译的结果。
后来又想..在网上寻找别的更简便的输入方法...
终于看到了
Java5.0以后可以使用java.util.Scanner类:
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
long l = sc.nextLong();
float f = sc.nextFloat();
double d = sc.nextDouble();
String s = sc.nextLine();
这个多简单啊...
来得实在...
这样就简单多了...