为什么当应用程序在本地运行(在 IntelliJ 中)和部署在 Ubuntu 服务器上时,Sping Boot 应用程序生成的文件具有不同的编码?
如何确保在 Ubuntu 上运行的已部署应用程序生成的文件与我的应用程序在 IntelliJ 本地运行时创建的文件具有相同的编码?
我已将 pom.xml 设置为具有以下
但我仍然看到同样的问题。关于如何确保本地生成的文件和部署的应用程序上生成的文件相同的任何想法吗?
提前致谢!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
行结束差异与字符集编码完全无关。
您可以使用
System.lineSeparator()
,它将为进程运行的平台编写适当的行分隔符,或者选择一个 ( LF 或 CRLF),始终使用它,并基于它编写代码。请注意,
readLine()
适用于:如果您使用
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: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 useprint()
instead and write your own line endings.