Results 1 to 6 of 6
- 01-11-2011, 06:05 PM #1
Member
- Join Date
- Oct 2010
- Posts
- 80
- Rep Power
- 0
Cursor does not move to end of statement
Hi.
prompt line: Enter feet:Java Code:System.out.print("Enter feet: "); feet = console.nextInt(); System.out.println(); System.out.print("Enter inches: "); inches = console.nextInt(); System.out.println();
I want the cursor to position after the colon, but it does not. It positions before the Enter feet: statement.
Any ideas why?
Thanks In Advance
- 01-11-2011, 06:27 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,604
- Blog Entries
- 7
- Rep Power
- 17
- 01-12-2011, 04:34 PM #3
Member
- Join Date
- Oct 2010
- Posts
- 80
- Rep Power
- 0
Cursor does not move to end of statement
Heyyy JosAH. Thanks for respsonding.
OS: Vista sp2 on Mac Boot Camp
Browser: IE7
IDE: Created in a window Eclipse 3.4.1
- 01-12-2011, 05:10 PM #4
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,604
- Blog Entries
- 7
- Rep Power
- 17
When people rob a bank they get a penalty; when banks rob people they get a bonus.
- 01-12-2011, 09:25 PM #5
The console class is nasty - It has been nothing but trouble with the apps I've seen that use it. It has different behavior from platform to platform and often has issues like those you describe. I still do it the old fashioned way, works wonderfully every time:
Java Code:BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String line = in.readLine();
- 01-13-2011, 03:11 PM #6
Member
- Join Date
- Oct 2010
- Posts
- 80
- Rep Power
- 0
Similar Threads
-
Show Cursor
By PhQ in forum AWT / SwingReplies: 3Last Post: 09-01-2010, 08:23 PM -
Invalid cursor state(jdbc and odbc connection using resultset statement)
By srengvichet in forum Advanced JavaReplies: 4Last Post: 06-27-2010, 06:03 PM -
change the mouse cursor - crosshair cursor
By cassysumandak in forum New To JavaReplies: 1Last Post: 09-28-2009, 01:57 AM -
Cursor
By serfster in forum New To JavaReplies: 2Last Post: 06-15-2008, 05:49 AM -
Using a cursor
By notnumber6 in forum New To JavaReplies: 3Last Post: 11-26-2007, 10:56 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks