java中遇到unicode时Sonar抛出错误

发布于 2024-11-16 18:13:19 字数 744 浏览 4 评论 0原文

我正在尝试使用最小的 Maven pom 在我们的 java 代码上运行声纳。

我可以运行 3 个项目

当我遇到具有 unicode UTF-8 的项目时,sonar:sonar 命令失败!

INFO]  Sensor SquidSensor...
INFO]  Java AST scan...
INFO] ------------------------------------------------------------------------
ERROR] BUILD ERROR
INFO] ------------------------------------------------------------------------
INFO] Can not execute Sonar

mbedded error: Got an exception - unexpected char: '\', file : D:\Sonar\Projects\AoGServices\src\main\com\mypackage\ao565svc\services\KommunikationPrµferenceOpretServiceBean.java, line : 34
INFO] ------------------------------------------------------------------------

第 34 行的类名带有 "\u00E6"

我如何告诉声纳在 unicode 上工作?

i am trying to run sonar on our java code using a minimum maven pom.

I can run 3 project

When i encounter a project having unicode UTF-8 the sonar:sonar command fails!

INFO]  Sensor SquidSensor...
INFO]  Java AST scan...
INFO] ------------------------------------------------------------------------
ERROR] BUILD ERROR
INFO] ------------------------------------------------------------------------
INFO] Can not execute Sonar

mbedded error: Got an exception - unexpected char: '\', file : D:\Sonar\Projects\AoGServices\src\main\com\mypackage\ao565svc\services\KommunikationPrµferenceOpretServiceBean.java, line : 34
INFO] ------------------------------------------------------------------------

the line 34 having a class name with "\u00E6"

How can i tell sonar to work on the unicode ?

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

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

发布评论

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

评论(1

冷︶言冷语的世界 2024-11-23 18:13:19

我还没有尝试过这个,但我认为您可以通过将以下内容添加到您的 POM 来解决此问题:

<project>
  ...
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    ...
  </properties>
  ...
</project>

参考资料:

I haven't tried this, but I think you may be able to fix this by adding the following to your POM:

<project>
  ...
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    ...
  </properties>
  ...
</project>

References:

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