如何关闭 Eclipse 警告“导入从未使用”?

发布于 2024-10-17 15:21:50 字数 100 浏览 2 评论 0原文

我的项目中有很多这样的警告,我想将其关闭。我对删除这些导入不感兴趣,所以不要告诉我该怎么做。

我正在使用 eclipse 3.4.2。

I have a lot of this warnings in project and I would like to turn it off. I'm not interested in removing those imports, so please don't tell me how to do it.

I'm using eclipse 3.4.2.

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

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

发布评论

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

评论(4

野味少女 2024-10-24 15:21:50

要更改整个工作区:

窗口 >首选项>爪哇>编译器>错误/警告>未使用的导入>忽略。

要覆盖单个项目的工作区设置:

项目 >属性> Java编译器>错误/警告>未使用的导入>忽略。

To change for the entire workspace:

Window > Preferences > Java > Compiler > Errors/Warnings > Unused Import > Ignore.

To override workspace settings for a single project:

Project > Properties > Java Compiler > Errors/Warnings > Unused Import > Ignore.

黑白记忆 2024-10-24 15:21:50

@SuppressWarnings("unusedImports") 仅禁用未使用的导入,而不是禁用所有未使用的项目

@SuppressWarnings("unusedImports") disables just unused imports as opposed to al unused items

亢潮 2024-10-24 15:21:50

顺便说一句,一个非常好的快捷方式是 ctrl+shift+o 可以自动清除这些导入。

也可以这样设置,以便在每个保存中自动组织导入:

window->preference->java->editor->save actions

如果您希望将这些导入留在那里,也可以。但这是对其他人来说的:)

另外我不确定 3.4 版本。

Btw, one very good shortcut is ctrl+shift+o that cleans those imports automatically.

Also it is possible to put so that in every save imports are automatically organised from:

window->preference->java->editor->save actions

If you prefer to leave those imports there, it is ok. But that is to anyone else :)

Also I am not sure about 3.4 version.

时光暖心i 2024-10-24 15:21:50

如果您有一个文件 org.eclipse.jdt.core.prefs,那么您可以添加 org.eclipse.jdt.core.compiler.problem.unusedImport=ignore。

使用 vscode 时,应该可以从项目根目录的文件夹 .settings 中看到该文件。

If you have a file org.eclipse.jdt.core.prefs then you can add org.eclipse.jdt.core.compiler.problem.unusedImport=ignore.

When using vscode this file should be seen from the project root in a folder .settings.

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