1、快速导入: alt+enter
2、格式化代码:alt+command+l
3、复制整行:command+d
4、删除整行:command+x(会复制该行到剪切板)
5、查找类:双击shift
6、当前文件种查找:command+f
7、全局查找:shift+command+f
8、向上移动整行代码:shift+command+方向键上
9、向下移动整行代码:shift+command+方向键下
10、去除无效引用:control+alt+o
11、System.out.println:sout(按tab键补全)
12、main方法:psvm(按tab键补全或者直接回车)
13、生成getter和setter或者构造方法:command+n
14、查看类或者接口:command+鼠标左键点击
15、查看具体的实现类:alt+command+鼠标左键点击
二、项目导入
1、打开idea,如下图所示:
2、点击Open选择你要打开的项目,idea会自动帮你下载所有依赖
三、修改jdk版本
1、file –> Project Structrue –> Module
2、Intellij IDEA –> Preferences –> Build,Execution,Deployment –> Compiler
注意
最好使用下面的代码在项目的pom文件中,这样整个项目的jdk版本就指定了
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
四、 修改作者@author
file –> Project Structrue –> Editoer –> File and Code Tempaltes
样式一
效果预览:
样式二
效果预览:
五、小工具介绍
六、Debug
Run –> Edit Configurations