为什么当应用程序在本地运行(在 IntelliJ 中)和部署在 Ubuntu 服务器上时,Sping Boot 应用程序生成的文件具有不同的编码?

发布于 2025-01-17 02:45:35 字数 331 浏览 0 评论 0原文

如何确保在 Ubuntu 上运行的已部署应用程序生成的文件与我的应用程序在 IntelliJ 本地运行时创建的文件具有相同的编码?

我已将 pom.xml 设置为具有以下

UTF-8UTF-8

但我仍然看到同样的问题。关于如何确保本地生成的文件和部署的应用程序上生成的文件相同的任何想法吗?

提前致谢!

How can I ensure that the deployed application running on Ubuntu generates a file that has the same encoding as my file created when my app runs locally in IntelliJ ?

I've set the pom.xml to have the below

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

but I'm still seeing the same issue. Any ideas on how to ensure the files generated locally and on deployed app are identical ?

Thanks in advance!

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

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

发布评论

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

评论(1

酷炫老祖宗 2025-01-24 02:45:35

行结束差异与字符集编码完全无关。

您可以使用 System.lineSeparator(),它将为进程运行的平台编写适当的行分隔符,或者选择一个 ( LF 或 CRLF),始终使用它,并基于它编写代码。

请注意,readLine() 适用于:

读取一行文本。一行被视为由换行符 ('\n')、回车符 ('\r')、回车符后紧跟换行符或到达文件末尾中的任何一个终止(EOF)。

如果您使用 println()编写文件,那么您将获得代码运行平台的默认行分隔符。在 Linux 上您将获得 \n,在 Windows 上您将获得 \r\n。如果无论平台如何,您都需要强制以一行结尾,那么您必须使用 print() 并编写自己的行结尾。

Line ending differences are completely unrelated to character set encoding.

You can either use System.lineSeparator(), which will write the appropriate line separator for the platform the process runs on, or pick one (LF or CRLF), always use that, and write your code based on that.

Note that readLine() works with either:

Reads a line of text. A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), a carriage return followed immediately by a line feed, or by reaching the end-of-file (EOF).

If you are writing the file using println() then you'll get the default line separator for the platform the code runs on. You'll get \n on Linux, and \r\n on Windows. If you need to force one line ending regardless of the platform, then you must use print() instead and write your own line endings.

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