如何在logback中的HTMLLayout中设置HTML编码?

发布于 2024-11-05 15:43:03 字数 649 浏览 0 评论 0原文

默认情况下,logback 只为 HTML 日志文件生成以下标头:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title>Logback Log Messages</title>
<style  type="text/css">

</style>
</head>

但此处未设置编码。有些浏览器默认编码为他们想要的东西,例如“windows-1251”或“ISO-8859-1”或“ISO-8859-5”。

如何

<meta http-equiv="Content-Type" content="text/html; charset=utf-16">

向 HTML 标头添加类似内容?另外,由于Java中的所有字符串都是UTF-16,所以这不应该在logback源代码中永久设置吗?

有没有办法通过 logback 配置文件来做到这一点,或者我应该创建自己的 HTMLLayout 后代?

By default logback only produces the following header for HTML log files:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title>Logback Log Messages</title>
<style  type="text/css">

</style>
</head>

But encoding here is not set. And some browsers default encoding to something they want like 'windows-1251' or 'ISO-8859-1' or 'ISO-8859-5'.

How do I add something like

<meta http-equiv="Content-Type" content="text/html; charset=utf-16">

to HTML header? Also since all strings in Java are UTF-16, shouldn't this be permanently set in logback source code?

Is there any way to do it via logback configuration file or should I create my own HTMLLayout descendant?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

够钟 2024-11-12 15:43:03

你不能设置“head”标签,但你可以扩展“HTMLLayout”,例如:

public class CustomizationHTMLLayout extends HTMLLayoutBase<ILoggingEvent>{

    @Override
    public String getFileHeader()
    {
        StringBuilder sbuf = new StringBuilder();
        sbuf.append("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"");
        sbuf.append(" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("<html>");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("  <head>");
        sbuf.append(LINE_SEPARATOR);
        // customization code
        sbuf.append("    <meta charset=\"utf-8\">");
        sbuf.append(LINE_SEPARATOR);
        // customization code
        sbuf.append("    <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("    <title>");
        sbuf.append(title);
        sbuf.append("</title>");
        sbuf.append(LINE_SEPARATOR);

        cssBuilder.addCss(sbuf);

        sbuf.append(LINE_SEPARATOR);
        sbuf.append("  </head>");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("<body>");
        sbuf.append(LINE_SEPARATOR);

        return sbuf.toString();
    }

}

如果你使用xml配置,更改“layout”标签,使用你的类

<layout class="CustomizationHTMLLayout">

You couldn't set "head" tag,but you can extend "HTMLLayout",such example:

public class CustomizationHTMLLayout extends HTMLLayoutBase<ILoggingEvent>{

    @Override
    public String getFileHeader()
    {
        StringBuilder sbuf = new StringBuilder();
        sbuf.append("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"");
        sbuf.append(" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("<html>");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("  <head>");
        sbuf.append(LINE_SEPARATOR);
        // customization code
        sbuf.append("    <meta charset=\"utf-8\">");
        sbuf.append(LINE_SEPARATOR);
        // customization code
        sbuf.append("    <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("    <title>");
        sbuf.append(title);
        sbuf.append("</title>");
        sbuf.append(LINE_SEPARATOR);

        cssBuilder.addCss(sbuf);

        sbuf.append(LINE_SEPARATOR);
        sbuf.append("  </head>");
        sbuf.append(LINE_SEPARATOR);
        sbuf.append("<body>");
        sbuf.append(LINE_SEPARATOR);

        return sbuf.toString();
    }

}

if you use xml configraution , change "layout" tag,use your class

<layout class="CustomizationHTMLLayout">
大姐,你呐 2024-11-12 15:43:03

从 javadoc 来看,似乎不存在这样的选项,但请检查来源以确定。在 1.0 之前,Logback 仍然是一个不断变化的目标。

如果您发现它不存在,请在 logback JIRA 实例中提出错误 - http:// jira.qos.ch/secure/Dashboard.jspa - 并请求它,或提交添加该功能的补丁。

It appears from the javadocs that no such option exists, but check the source to be certain. Logback is still a moving target until 1.0.

If you find it is not present, then raise a bug in the logback JIRA instance -- http://jira.qos.ch/secure/Dashboard.jspa - and ask for it, or submit a patch that adds the functionality.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文