从键盘中输入内容是人机交互的一部分,在写一些小程序的时候也经常会被用到。
<span style="font-size:18px;">import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
/**
* @author frozen cloud
* @从键盘输入的两种方法。
*/
public class KeyboardInput {
public static void main(String[] args) {
KeyboardInput ki = new KeyboardInput();
ki.inputFun1();
ki.inputFun2();
}
public void inputFun1() {
String str;
BufferedReader buf = new BufferedReader(
new InputStreamReader(System.in));
try {
str = buf.readLine();
System.out.println("inputFun1刚刚输入的内容是:" + str);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void inputFun2() {
Scanner reader = new Scanner(System.in);
System.out.println("输入内容");
double num = reader.nextDouble();
String sr = reader.nextLine();
System.out.println("inputFun2刚刚输入的数字是:" + num);
System.out.println("inputFun2刚刚输入的文字是:" + sr);
}
}
</span>