博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
code异常处理
阅读量:5274 次
发布时间:2019-06-14

本文共 616 字,大约阅读时间需要 2 分钟。

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 */
}
}
}

 

转载于:https://www.cnblogs.com/wcLT/p/5898917.html

你可能感兴趣的文章
IntelliJ IDEA常用快捷键小结
查看>>
ORA-12154/ORA-12560 可以尝试的解决办法
查看>>
渗透测试网络环境搭建
查看>>
stm32 invalid rom table(转载)
查看>>
设计模式-策略模式
查看>>
for循环中++i和i++的区别
查看>>
Python自然语言处理学习笔记(32):4.4 函数:结构化编程的基础
查看>>
BZOJ 1207 打鼹鼠
查看>>
BZOJ 3106 棋盘游戏
查看>>
Async await 异步编程说明
查看>>
怎么才能学好php
查看>>
sql,插入最大值加1
查看>>
RabbitMQ简介
查看>>
[C++][数据结构]栈(stack)的实现
查看>>
Java static作用
查看>>
浮动div 内部元素 垂直居中
查看>>
MySQL存储引擎之InnoDB
查看>>
Lightweight Render Pipeline
查看>>
css之px自动转rem—sublime 插件CSSREM
查看>>
eclipse设置
查看>>