本帖最后由 七弦 于 2014-6-2 19:39 编辑
大爱分享! _____ 求技术分! :lol
分享Java获取键盘输入值的三种方法,供参考学习。
方法一,利用System.in.read。
实例代码如下:
public static void main(String [] args) throws IOException{
System.out.print("请输入:");
char i = (char) System.in.read();
System.out.println(" www.itheima.com :"+i);
}
方法二,利用BufferedReader。
实例代码如下:
public static void main(String [] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = null;
System.out.println("请输入:");
str = br.readLine();
System.out.println("www.itheima.com :"+str);
}
方法三,利用Scanner。
实例代码如下:
public static void main(String [] args) {
Scanner sc = new Scanner(System.in);
System.out.println(“请输入你的姓名:”);
String name = sc.nextLine();
System.out.println(“请输入你的年龄:”);
int age = sc.nextInt();
System.out.println(“请输入你的工资:”);
float salary = sc.nextFloat();
System.out.println(“你的信息如下:”);
System.out.println(“姓名:”+name+“\n”+“年龄:”+age+“\n”+“工资:”+salary);
}
补充:第三种方法是最强大的,可以输入不同的类型。
赶快去试试吧!
|