黑马程序员技术交流社区

标题: myeclipse中如何自定义快捷键 [打印本页]

作者: 南瓜静涵    时间: 2012-6-27 17:00
标题: myeclipse中如何自定义快捷键
主要是看到方老师这一招 想偷学 求赐教{:soso_e102:}{:soso_e102:}
想问一下  myeclipse中如何自定义快捷键 如 按下ctrl+rw可以写出

InputStream in = null;
OutputStream out = null;
try {
in = new FileInputStream(path);
int len = 0;
byte[] buf = new byte[1024];
out = response.getOutputStream();
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
} finally {
if (in != null) {
try {
in.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (out != null) {
try {
out.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}


作者: 车风波    时间: 2012-6-27 17:04
点window----preferences---general---keys。

这里直接按下你要设置的键就行了,不是输字母。

作者: 晁喆    时间: 2012-6-27 17:05
。。。。。。。。。。。。。。。。。。。。。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2