首页 > 代码库 > 处理拷贝图片的异常
处理拷贝图片的异常
1 import java.io.File; 2 import java.io.FileInputStream; 3 import java.io.FileNotFoundException; 4 import java.io.IOException; 5 6 7 public class Demo4 { 8 9 /** 10 * @param args 11 */ 12 public static void main(String[] args) { 13 getFile(); 14 15 } 16 public static void getFile() { 17 //找到目标文件 18 File file = new File("C:\\cc\\tt.txt"); 19 //建立通道 20 FileInputStream inputStream = null; 21 try { 22 inputStream = new FileInputStream(file); 23 //创建一个缓冲区 24 byte[] b = new byte[1024]; 25 try { 26 int count = inputStream.read(b); 27 System.out.println(new String(b, 0, count)); 28 } catch (IOException e) { 29 System.out.println("硬盘损坏了,请修理"); 30 throw new RuntimeException(e); 31 } 32 } catch (FileNotFoundException e) { 33 System.out.println("文件不存在"); 34 //提示用户有错误要修改 35 //让后面的代码停止运行 36 throw new RuntimeException(e); // 创建一个运行时异常 37 } finally { 38 try { 39 inputStream.close(); 40 } catch (IOException e) { 41 System.out.println("关闭失败"); 42 throw new RuntimeException(e); 43 } 44 } 45 } 46 47 48 }
处理拷贝图片的异常
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。