eclipse一些代码设置

utf-8格式

window->preference->General->workspace 下将Text file encoding设置为UTF-8格式,New text file line dlimit 设置为unix

同时preference->web->jsp flies 下将 Encoding也设置为UTF-8 默认jsp文件已UTF-8格式

使用空格来代替tabs

将空格用 · 代替显示
preference->General->Text Editors 下勾上show whitespace characters
同时勾上Insert spaces for tabs 设置tab代替的空格为四个
preference->java->code style->formatter 下新建一个 同时edit 将Indentation标签下的Tab policy改为Space only

保存自动删除尾部空行

preference->java->Editor->save actions 下勾上Perform the selected actions on save Additional actions 之后点击configure ,在Code Organizing 标签下勾上 Remove trailing whitespace

代码细则

  • if 后面要有空格 if 条件括号后要有空格
  • try catch final 后面都要有空格
  • 函数参数逗号后要有空格,后括号与之前要有空格隔开。
  • = ,+号前后都有空格
  • sql关键词全部大写
  • 其他java语法代码细则基本一致,注意空格

你可能感兴趣的:(eclipse一些代码设置)