码迷,mamicode.com
首页 > 其他好文 > 详细

code异常处理

时间:2016-09-23 11:25:21      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

private void copyPrivateRawResuorceToPubliclyAccessibleFile() {
InputStream inputStream = null;
FileOutputStream outputStream = null;
try {
XX
/*异常处理*/
try {
while ((length = inputStream.read(buffer)) > 0){
outputStream.write(buffer, 0, length);
}
} catch (IOException ioe) {
/* ignore */
}
} catch (FileNotFoundException fnfe) {
/* ignore */
} finally {
/*异常处理*/
try {
if (inputStream != null)
inputStream.close();
} catch (IOException ioe) {
/* ignore */
}
/*异常处理*/
try {
if (outputStream != null)
outputStream.close();
} catch (IOException ioe) {
/* ignore */
}
}
}

 

code异常处理

标签:

原文地址:http://www.cnblogs.com/wcLT/p/5898917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!