vote up 2 vote down star
1

I'm writing a simple console application (80x24) in Java, is there a gotoxy(x,y) equivalent?

flag

3 Answers

vote up 5 vote down check

I don't think there's a built-in function to do that in Java. There's a Java curses library called JCurses that you can use though.

link|flag
vote up 4 vote down

If by gotoxy(x,y), you want to reposition your cursor somewhere specific on the console, you can usually use VT100 control codes to do this. See http://www.termsys.demon.co.uk/vtansi.htm.

Do something like

char escCode = 0x1B;
int row = 10; int column = 10;
System.out.print(String.format("%c[%d;%df",escCode,row,column));

Which should move the cursor to position 10,10 on the console.

link|flag
vote up 3 vote down

Not without pulling in a console curses style library...

You can try javacurses and see if that helps you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.