MyEclipse使用技巧

窗口布局:

改变窗口布局

不同的项目对应不同的窗口布局。即打开透视图,
关闭当前窗口布局
Window – Close perspective

1、设置字体大小:
Window --> Preferences --> General --> Appearance --> Colors and Fonts --> Basic --> Text Font --> Change

2、Package Explorer
打开
Window – Show View – Package Explorer
改变包的组织结构
在package Explorer窗口中使用箭头
package presentation中选择hieiarchical

3、快捷键:
Ctrl+Shift+F 格式化代码
Ctrl+Shift+O 自动导入
Ctrl+/ 添加行注释
Ctrl+Shift+/ 添加块注释
Alt+/ 弹出提示选项
Ctrl+Shift+T 查看类的源代码
Ctrl+Shift+H 查看类的继承关系,输入类名(选中类名,按F4)
Ctrl+F 查找

4、调试:
双击行号设置断点
按F6逐行执行。
按F8调到下一个断点,进入函数内部

5、编码格式:
Window-->Preferences-->General

  • 提高MyEclipse的打开速度
    Editors-->File Assosiations右边File types选择*.JSP在下方Associated editors:选择MyEclipse JSP Editor
  • 更改编码格式(文件打开中文乱码)
    Content Types-->Text-->JSP选中*.jsp(locked)在下方输入utf-8点击Update
    Workspace右侧Text file encoding选择Other:UTF-8

建立新文件的编码格式
MyEcipse-->Files and Editors-->JSP右边Encoding:UTF-8
Web-->JSP Files-->右边Encoding设置为ISO 10646/Unicode(UTF-8),点击OK

你可能感兴趣的:(MyEclipse使用技巧)