1

我正在寻找一种自动缩进java源代码的方法。我有一个从其他语言生成 java 代码的工具。现在,我想缩进生成的代码。请告诉我我该怎么做?在另一种方式中,我怎样才能准确地完成 ctl+shift+m​​ 自动执行的操作?我不能使用 CTRL + SHIFT + F 和 CTRL + SHIFT + M

4

3 回答 3

2

As your tag says, you are using Eclipse , you can use CTRL + SHIFT + F to indent the code.

Moreover as you are asking about replacing fully qualified name to import statement then no such thing exists in Eclipse as of now. ( Correct me if I am wrong ).

But you can still select the fully qualified name and press CTRL + SHIFT + M to import the class.

于 2012-05-02T09:42:58.950 回答
0

请参阅我们的Java Formatter,了解处理所有 Java 方言的工具,包括版本 7。

于 2012-05-05T17:06:52.770 回答
-1

您可以在 Package Explorer 中选择一个项目/文件夹/包,然后使用 Source > Format (Ctrl+Shift+F) 一次性格式化所有内容。或者,您也可以配置清理或保存操作。

于 2012-05-02T11:13:41.173 回答