首页 > 学院 > 编程设计 > 正文

myeclipse怎么添加读写模板代码rw?

2020-07-14 13:06:10
字体:
来源:转载
供稿:网友

在便以其中添加一些相同的代码,可以通过代码的方式存储起来,之后加载的时候只需要通过快捷方式加载就可以了,很方便快捷。

1、打开myeclipse,在窗口中进入属性编辑界面

2、进入模板代码添加的界面,并点击new按钮

3、弹出对话框

4、比如是添加rw的读写操作代码块,那么name的地方设置名字pattern的地方添加模板代码

5、这里提供读写操作的模板代码:

InputStream in = null;

OutputStream out = null;

try{

in = new FileInputStream(path);

int len = 0;

byte[] buffer = new byte[1024];

out = new FileOutputStream("");

while((len = in.read(buffer)) > 0){

out.write(buffer, 0, len);

}

}

finally{

if(in != null){

try{

in.close();

}catch(Exception e){

e.printStackTrace();

}

}

if(out != null){

try{

out.close();

}catch(Exception e){

e.printStackTrace();

}

}

}

这个代码可以作为参考

6、在编译的时候只有写出rw之后使用alt+/就可以将模板代码全部展现出来

相关推荐:

myeclipse2014怎么打开web开发项目?

MyEclipse中Servers窗口在哪里怎么显示?

MyEclipse2015打开提示Tern Sercer Tineout错误怎么办?

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表