pokerLife / wiki

开发手册、心得体会、常用网址、学习教程、常见问题梳理,持续更新中
https://pokerlife.github.io/wiki/
13 stars 7 forks source link

Intellij IDEA神器使用技巧 #84

Open pokerLife opened 5 years ago

pokerLife commented 5 years ago

🎲 IntelliJ IDEA使用技巧(一)常用快捷键

快捷键 功能
Alt+Enter 快速修复(即Eclipse中的Quick Fix功能)
Alt+Insert 快速生成Setter之类的方法
Alt+Shift+M 快速提取公用代码
Ctrl+W 自动按语法选中代码
Ctrl+Y 删除行
Ctrl+D 复制行
Ctrl+</> 注释行
Ctrl+N 查找类
Ctrl+F 当前窗口查找
Ctrl+Tab 切换面板
Ctrl+Shift+N 查找资源文件
Ctrl+Shift+V 查看粘贴版历史
Ctrl+Shift+A 可以查找所有Intellij的命令,并且每个命令后面还有其快捷键。
Ctrl+Left/Right 移动光标到前/后单词
Shift+Shift 查找任何东西,包括类、资源、配置项、方法等等。
Ctrl+Shift+W 反向选中代码
Ctrl+Shift+Enter 自动补全末尾的字符
Ctrl+Shift+Alt+T 重构功能大全
Ctrl+Alt+O 格式化import列表,清除不需要的包
Ctrl+Alt+L 格式化代码
Ctrl+Alt+T 创建单元测试用例
pokerLife commented 5 years ago

:octocat: IntelliJ IDEA使用技巧(二)控制台输出中文乱码问题的解决方法

进入IDEA安装目录,进入bin目录下,定位到idea.vmoptions文件,打开文件最后一行添加 -Dfile.encoding=UTF-8 最后,在 IntelliJ IDEA 中的“Run/Debug Configurations”中,修改虚拟机参数“ VM options ”,内容与在文件idea.vmoptions中追加的内容相同,皆为-Dfile.encoding=UTF-8