实现Callable接口(了解即可)
1.实现Callable接口,需要返回值类型
2.重写call方法,需要抛出异常
3.创建目标对象
4.创建执行服务:ExecutorService =serExecutors.newFixedThreadPool(1);
5.提交执行 Future r1=ser.submit(t1);
6.获取结果:boolean rs1=r1.get();
7.关闭服务: ser.shutdown();
代码演示
package com.test1;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import org.apache.commons.io.FileUtils;
public class TestCallable implements Callable<Boolean>{
private String url;// 图片地址
private String name;// 图片名
public TestCallable(String url, String name) {
this.url = url;
this.name = name;
}
@Override
public Boolean call() {
WebDownloader web = new WebDownloader();
web.dowmloader(url, name);
System.out.println("下载了文件名为:" + name);
return true;
}
public static void main(String[] args) throws InterruptedException, ExecutionException {
TestCallable t1 = new TestCallable("https://img-home.csdnimg.cn/images/20210120054229.jpg", "1.jpg");
TestCallable t2 = new TestCallable("https://img-home.csdnimg.cn/images/20210120054229.jpg", "2.jpg");
TestCallable t3 = new TestCallable("https://img-home.csdnimg.cn/images/20210120054229.jpg", "3.jpg");
//创建执行服务
ExecutorService ser=Executors.newFixedThreadPool(3);
//提交执行
Future<Boolean> r1=ser.submit(t1);
Future<Boolean> r2=ser.submit(t2);
Future<Boolean> r3=ser.submit(t3);
//获取结果
boolean rs1=r1.get();
boolean rs2=r2.get();
boolean rs3=r3.get();
//关闭服务
ser.shutdown();
}
}
class WebDownloader {
public void dowmloader(String url, String name) {
try {
FileUtils.copyURLToFile(new URL(url), new File(name));
} catch (IOException e) {
e.printStackTrace();
System.out.println("IO异常,dowmloader方法出现问题");
}
}
}
该博客展示了如何实现Callable接口来创建可返回结果的任务。通过创建一个TestCallable类,它下载图片并返回一个布尔值确认下载成功。然后,利用ExecutorService创建固定线程池,提交多个任务并使用Future获取每个任务的结果。最后,关闭服务。这个例子中,WebDownloader类负责实际的文件下载操作,处理可能出现的IOException。
2588

被折叠的 条评论
为什么被折叠?



