首页 > 其他分享 >打印控制台->字体与颜色

打印控制台->字体与颜色

时间:2023-03-14 17:57:07浏览次数:36  
标签:String colour 打印 param content 字体 033 控制台 type

方法如何??

    /**
     * @param content 文本内容
     * @param colour  颜色代号:31->红色、32->黄色、33->橙色、34->蓝色、35->紫色、36->绿色
     * @param type    样式代号:0无;1加粗;3斜体;4下划线
     * @return
     */
    private static String getFormatLogString(String content, int colour, int type) {
        boolean hasType = type != 1 && type != 3 && type != 4;
        if (hasType) {
            return String.format("\033[%dm%s\033[0m", colour, content);
        } else {
            return String.format("\033[%d;%dm%s\033[0m", colour, type, content);
        }
    }

如果使用??

    /**
     * 打印log.info也不印象
     */
System.out.println(getFormatLogString("唐僧",32,0))

标签:String,colour,打印,param,content,字体,033,控制台,type
From: https://www.cnblogs.com/yjw6/p/17215763.html

相关文章