How to change eclipse console output color?
I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?
eclipse console
add a comment |
I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?
eclipse console
add a comment |
I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?
eclipse console
I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?
eclipse console
eclipse console
asked Dec 14 '13 at 0:26
antifrizantifriz
1611111
1611111
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:
Also see the Eclipse documentation:
http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm
1
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
1
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the classSystem
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.
– Malte Skoruppa
Jun 18 '15 at 12:57
1
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
add a comment |
Window->Preferences=>Build->Console
add a comment |
I related concept but useful if someone would like full color output on Eclipse's console.
Get an Eclipse extension called ANSI Escape in Console (Link below)
https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/
The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f390508%2fhow-to-change-eclipse-console-output-color%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:
Also see the Eclipse documentation:
http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm
1
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
1
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the classSystem
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.
– Malte Skoruppa
Jun 18 '15 at 12:57
1
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
add a comment |
The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:
Also see the Eclipse documentation:
http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm
1
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
1
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the classSystem
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.
– Malte Skoruppa
Jun 18 '15 at 12:57
1
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
add a comment |
The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:
Also see the Eclipse documentation:
http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm
The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:
Also see the Eclipse documentation:
http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm
answered Dec 14 '13 at 1:58
Malte SkoruppaMalte Skoruppa
9,02343856
9,02343856
1
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
1
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the classSystem
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.
– Malte Skoruppa
Jun 18 '15 at 12:57
1
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
add a comment |
1
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
1
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the classSystem
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.
– Malte Skoruppa
Jun 18 '15 at 12:57
1
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
1
1
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…
– antifriz
Dec 14 '13 at 13:53
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
You said you changed the background color. That wouldn't work :)
– Malte Skoruppa
Dec 15 '13 at 14:58
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?
– HelloGoodbye
Jun 18 '15 at 11:43
1
1
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class
System
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.– Malte Skoruppa
Jun 18 '15 at 12:57
@HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class
System
, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.– Malte Skoruppa
Jun 18 '15 at 12:57
1
1
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.
– Malte Skoruppa
Jun 18 '15 at 13:00
add a comment |
Window->Preferences=>Build->Console
add a comment |
Window->Preferences=>Build->Console
add a comment |
Window->Preferences=>Build->Console
Window->Preferences=>Build->Console
answered Dec 4 '18 at 14:22
Damian ReloadedDamian Reloaded
111
111
add a comment |
add a comment |
I related concept but useful if someone would like full color output on Eclipse's console.
Get an Eclipse extension called ANSI Escape in Console (Link below)
https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/
The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.
add a comment |
I related concept but useful if someone would like full color output on Eclipse's console.
Get an Eclipse extension called ANSI Escape in Console (Link below)
https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/
The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.
add a comment |
I related concept but useful if someone would like full color output on Eclipse's console.
Get an Eclipse extension called ANSI Escape in Console (Link below)
https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/
The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.
I related concept but useful if someone would like full color output on Eclipse's console.
Get an Eclipse extension called ANSI Escape in Console (Link below)
https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/
The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.
answered 2 hours ago
Andrew SAndrew S
1134
1134
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f390508%2fhow-to-change-eclipse-console-output-color%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown