欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

设置Myeclipse中的代码格式化、注释模板及保存时自动格式化

程序员文章站 2024-03-01 22:21:52
1:设置注释的模板: 下载此模板:codetemplates.xml 搜索dangzhang,将其改为你自己的姓名,保存 打开eclipse/myeclipse...

1:设置注释的模板:

下载此模板:codetemplates.xml
搜索dangzhang,将其改为你自己的姓名,保存
打开eclipse/myeclipse
选择 window-->preferences-->java-->code-->code templates 右边点import 选择你写好的模板.xml文件导入进去即可

2:设置格式化的模板:

格式化模板:eclipse-formatter.xml
格式化模版方法同上,只是不是选择code templates ,而是选择formatter。

3:保存时自动格式化代码:

打开eclipse/myeclipse
选择 window-->preferences-->java-->editor-->save actions
右边选中:perform the selected actions on save
format source code
format all lines
organize imports
保存后重启myeclipse即可。
如下图所示:

设置Myeclipse中的代码格式化、注释模板及保存时自动格式化