IDEA之代码格式化与Eclipse保持风格一致

时间:2024-03-28 10:26:18

安装对应的Eclipse格式化插件

Setting ->Plugins ->Browse repositories
IDEA之代码格式化与Eclipse保持风格一致

配置插件

选择Setting ->Other Settings->Eclipse Code Formatter,勾选Use the Eclipse-code-formatter,并在Eclipse Java Formatter config file选择Eclipse用的java-code-style.xml文件,这个选项会决定格式化代码的方式。同时配置Import order的From File也为Eclipse用的java-code-style.xml文件,这个选项会决定组织import区域的方式。如下图:
IDEA之代码格式化与Eclipse保持风格一致

使用插件

使用Intellij的格式化快捷键"Ctrl+ALT+L"即可进行格式化。如果出错会输出提示到Event Log里,如果看到’xxx formatted sucessfully by Eclipse code formatter’则表示格式化成功。