当前位置:  技术问答>java相关

怎样从键盘读取数字

    来源: 互联网  发布时间:2015-05-31

    本文导语:  我想从键盘读取数字(eg. int型变量的值) 应怎样实现? | public String readConsole() throws Exception     {       // Create a buffered reader with System.in, then       // read a line from it.       BufferedRea...


我想从键盘读取数字(eg. int型变量的值)

应怎样实现?

|
public String readConsole() throws Exception 
   {
      // Create a buffered reader with System.in, then
      // read a line from it.
      BufferedReader breader;
      breader = new BufferedReader(new InputStreamReader(System.in));
      return breader.readLine();
   }

int i  = Integer.parseInt(StringValue);

---------------
shmilu@sina.com

|
import java.io.*;
public class Test {
  public static void main (String[] args) {
    String alpha;
    DataInputStream DI = new DataInputStream(System.in);
    System.out.println("Please enter the number");
    try {
      alpha = DI.readLine();
      int a = Integer.parseInt(alpha);
      System.out.print("You enter is "+a);
    }
    catch(Exception e) {
      System.out.print("You enter a bad Character");
    }
  }
}

|
//How to read from standard input
import java.io.*;

public class read {
  public static void main(String[] args) {
    DataInputStream wjl_in =         //新生成一个data输入流的实例wjl_in;
      new DataInputStream(
        new BufferedInputStream(System.in));/*BufferendInputStream();一个过滤输入流,为从源输入流中读入的字节保留一个缓
冲区。*/
    String s;
    try {
      while((s = wjl_in.readLine()).length() != 0)
        System.out.println(s);
      // An empty line terminates the program
    } catch(IOException e) {
      e.printStackTrace();
    }
  }
}

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • sun的ultra5启动时显示没有键盘设备,可能是键盘坏了,哪里能找到这种8芯的鬼键盘?
  • 请问一下,安装FreeBSD的时候,我得键盘和鼠标都是USB口的,安装的时候找不到鼠标和键盘怎么办?急!
  • 我安装的是suse的linux,我的键盘用的usb的,安装好以后,键盘的一些符号显示不对。
  • 有两个USB键盘怎么用自己写的USB键盘驱动程序只替换其中一个驱动?
  • 我做了一个缩减的linux系统,将是要在另一台pc机上黑盒运行(即没有键盘,显示器,上电就跑),但我这个缩减的LINUX是要键盘输入密码登陆的,我
  • 解析android中隐藏与显示软键盘及不自动弹出键盘的实现方法
  • arm(2440)没有lcd和qt。怎么测试usb键盘!
  • 请问怎样发送键盘信号?
  • JPanel中如何捕获键盘事件?
  • 急!!如果在程序中模拟一个键盘按键?
  • vmware + Hiweed0.55 升级到testing键盘失效。
  • 蓝点LINUX,进入XWINDOW时鼠标和键盘都没有响应了,怎么办?急~~~~!~~~~
  • 在安装Linux时"键盘设置"应该选哪种类型的呢?
  • jQuery虚拟键盘 jQuery Keypad
  • 如何用USB口的键盘安装RH8.0
  • 如何做出自己的键盘中断?
  • linux下如何区分多个USB键盘的输入?
  • linux系统下怎么捕捉不到键盘事件
  • 在线等待。。。aram开发问题求救。键盘交互这个怎么实现,怎样实现简便
  • 开发板上内核启动后,键盘键值错乱


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3