Change size of font System.out.println

前端 未结 4 1680
灰色年华
灰色年华 2020-12-04 02:58

Can you tell me how to increase the size of the font using System.out.println in java.

相关标签:
4条回答
  • 2020-12-04 03:29

    There is a way to change fonts for Java output. See details here:

    http://mrhaki.blogspot.com/2008/06/change-font-in-output-window-in.html

    0 讨论(0)
  • 2020-12-04 03:48

    There is no concept of "font" with System.out.

    Edit the console font settings for whatever application you're using as an output console.

    0 讨论(0)
  • 2020-12-04 03:50

    You cannot do this through coding as in the font size is based on your console. I assumed you use eclipse to code your java code. So, you can change eclipse console font size here. General > Appearance > Colors and Fonts

    Which you can get the source here. http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-consoleAppearance.htm

    0 讨论(0)
  • 2020-12-04 03:50

    This is a console output. Unfortunately there is no way to do it.

    0 讨论(0)
提交回复
热议问题