首页 > 学院 > 开发设计 > 正文

Java获取键盘输入值

2019-11-14 11:01:56
字体:
来源:转载
供稿:网友
java获得键盘输入的值得方法有:方法一,使用System.in.read。例如:
1public static void main(String  args[]) throws IOException{
2  System.out.PRint("请输入:");
3  char i = (char) System.in.read();
4  System.out.println(" aaa:"+i);
5}
方法二,使用BufferedReader。例如:
1public static void main(String  args[]) throws IOException{
2  BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
3  String str = null;
4  System.out.println("请输入:");
5  str = br.readLine();
6  System.out.println("aaaa :"+str);
7}
方法三,使用Scanner,可以输入不同的类型.例如:
01public static void main(String  args[]) {
02  Scanner sc = new Scanner(System.in);
03  System.out.println(“请输入你的姓名:”);
04  String name = sc.nextLine();
05  System.out.println(“请输入你的年龄:”);
06  int age = sc.nextInt();
07  System.out.println(“请输入你的工资:”);
08  float salary = sc.nextFloat();
09  System.out.println(“你的信息如下:”);
10  System.out.println(“姓名:”+name+“/n”+“年龄:”+age+“/n”+“工资:”+salary);
11}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表