0

I want to increase the font size of "Hello" except the other strings, and to make it display in the console by [System.out.println]. How can I make it and see the bigger size "Hello" in the console of eclipse? [java]

Brad
  • 11
  • You can look at some console information here --> http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-consoleAppearance.htm – josemr May 25 '16 at 11:54

1 Answers1

1

The console (and, in general, strings in Java and other languages) deals with "plain text". Plain text has no notion of text size or formatting. You cannot do that. You can only change (globally, from the outside) the settings of the console program - among those settings there should be the (global) text size.

leonbloy
  • 73,180
  • 20
  • 142
  • 190