DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2005
    Posts
    4

    Unhappy Please Help my teachers suck!!! - keyboard input-

    all i want to do is to simply read in character input from the keyboard

    i have been told to use some thing like

    String MyString = "";

    inputstream isr = new inputstream(system.in);
    Bufferreader br = new bufferreader(isr);

    system.out.print("please enter a number");

    MyString= readline

    Please help i understand this is only half of it and i know this code is very wrong, but i need to use programming lines simular to this else i will fail

    Thank you

    James

  2. #2
    Join Date
    Nov 2004
    Location
    Norway
    Posts
    1,560

    You're almost there...

    .. except for quite a few spelling errors... Note the places where I have
    used uppercases.

    Code:
    String MyString = "";
    
    InputStream isr = new InputStream(System.in);
    BufferedReader br = new BufferedReader(isr);
    
    System.out.print("please enter a number");
    
    myString= br.readLine();
    int myInt;
    // if this is going to be a number then check that this really is a number
    // for this example I'm checking for an integer (no decimals)
    try {
      myInt=Integer.parseInt(myString);
    } catch (NumberFormatException nfe) {
      System.err.println(myString+" is not a valid integer");
    }

  3. #3
    Join Date
    Mar 2005
    Posts
    4
    thank you so so much ... you are a life saver

    James

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links