gpt4 book ai didi

java - LayoutWrappingEncoder 的 LogBack 默认字符集?

转载 作者:行者123 更新时间:2023-12-02 02:59:57 32 4
gpt4 key购买 nike

Logback 1.1.3 LayoutWrappingEncoder documentation不指示如果用户未设置默认字符集将是什么,但源代码显示:

By default this property has the value null which corresponds to the system's default charset.

但是我使用的是 PatternLayoutEncoder (带有 RollingFileAppender),它似乎以 UTF-8(以及我的 Windows 7 的默认字符集)输出文件专业系统可能不是UTF-8)。

UTF-8 输出实际上是我想要的,但我想确保我不是偶然得到这个,因为文档似乎表明了其他内容。那么,当我没有明确指定字符集时,为什么 Logback 会给出 UTF-8 输出呢?

最佳答案

Logback字符编码

您可以使用<charset>在你的 PatternLayoutEncoder 的定义中因为这是 LayoutWrappingEncoder 的子类,它提供 setCharset方法。文档中通过类的摘录表明了这一点,但没有给出示例 xml 配置。对于 LayoutWrappingEncoder,这里给出了答案:[Logback-user]: How to use UTF-8 .

因此,如果您通过代码配置,您可以调用 setCharset使用 UTF-8 的方法。或者,如果您通过 xml 配置,则为:

<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<charset>UTF-8</charset>
<outputPatternAsHeader>true</outputPatternAsHeader>
<pattern>[%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>

默认文件编码

Logback 的文档正确地指出使用默认字符编码。 Windows 上的默认字符集通常不是 UTF-8(例如,我的是 windows-1252)。正确的做法是将 logback 配置为 UTF-8,如上所述。即使 logback 从某处获取 UTF-8,或 file.encoding是由您以某种方式设置的,无法保证将来会发生这种情况。

顺便说一句,Sun 之前曾提到过 file.encoding,如果您在 Oracle VM 上进行设置:

The "file.encoding" property is not required by the J2SE platform specification; it's an internal detail of Sun's implementations and should not be examined or modified by user code. It's also intended to be read-only; it's technically impossible to support the setting of this property to arbitrary values on the command line or at any other time during program execution.

Eclipse 和 Maven

如果您从 Eclipse 运行 Maven,并且您已经在环境/项目或运行配置(对我来说在公共(public)选项卡中)中将环境设置为 UTF-8,那么 Eclipse 将安排新的 JVM通过设置file.encoding来获得UTF-8编码。请参阅:Eclipse's encoding documentation

关于java - LayoutWrappingEncoder 的 LogBack 默认字符集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57058165/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com