标签:fileutils div tst print img 重写 run方法 image tac
1 @Override 2 public void run() { 3 System.out.println("run执行了.."); 4 try { 5 FileUtils.copyURLToFile(new URL(this.URL), new File(this.fileName)); 6 System.out.println("download.."); 7 } catch (MalformedURLException e){ 8 e.printStackTrace(); 9 } catch (IOException e) { 10 e.printStackTrace(); 11 } 12 }
多线程中继承Thread类重写run方法FileUtils.copyURLToTile()方法不执行??
解决方案:在该线程类的主方法中实例化,测试就ok~~
标签:fileutils div tst print img 重写 run方法 image tac
原文地址:https://www.cnblogs.com/skyblue123/p/13156733.html