Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Colours in Java console

Tags:

java

console

menu

basically, I was wondering if there is any way of specifying the colours of the background and text in a Java console application. I am writing a console menu. Also, if there is any easy way of clearing the console.

Thanks.

like image 649
Jack H Avatar asked Jan 31 '11 01:01

Jack H


People also ask

How do I change colors in Java?

Paint - Double click on any color at the bottom of the screen. - Choose "Define Custom Colors". - Select a color and/or use the arrows to achieve the desired color. are the numbers needed to create your new Java color.

How many colors are there in Java?

3.1 java. Color provides 13 standard colors as named-constants. They are: Color. RED , GREEN , BLUE , MAGENTA , CYAN , YELLOW , BLACK , WHITE , GRAY , DARK_GRAY , LIGHT_GRAY , ORANGE , and PINK .


1 Answers

You can use ANSI escape codes to specify the foreground and background colors of text for console apps on many platforms, assuming the terminal you're using to run the application supports ANSI mode. You don't need any additional libraries to use these codes, you can just embed them directly in your strings. However, since they're a bit messy looking, you can use a library such as JCurses to make it a bit easier to apply the various ANSI codes.

Here's an example program:

public static void main(String args[]) {
    System.out.println((char)27+"[01;31m;This text is red."+(char)27+"[00;00m");
    System.out.println((char)27+"[01;32m;This text is green."+(char)27+"[00;00m");
}

As a bonus, ANSI escape codes will help you with screen clearing and cursors positioning, as well.

like image 159
Jason LeBrun Avatar answered Sep 28 '22 11:09

Jason LeBrun