• Java 线程池:newFixedThreadPool


    1、Java 线程池

    Java通过Executors提供四种线程池,分别为:
    newCachedThreadPool创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。
    newFixedThreadPool 创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待。
    newScheduledThreadPool 创建一个定长线程池,支持定时及周期性任务执行。
    newSingleThreadExecutor 创建一个单线程化的线程池,它只会用唯一的工作线程来执行任务,保证所有任务按照指定顺序(FIFO, LIFO, 优先级)执行。

    2、newFixedThreadPool 示例

    public class ThreadTask {

    private static Logger log = LoggerFactory.getLogger(ThreadTask.class);
    public void doMultiThread(int threadCount){
    ExecutorService fixedThreadPool = Executors.newFixedThreadPool(threadCount);
    // 读取文件
    List<File> fileList = FileUtil.loopFiles(CommonUtil.readProperties(CommonUtil.CONF,"path"));
    log.info("待处理总文件数量:" + fileList.size());
    if(fileList.size() >0) {
    for (File file : fileList) {
    fixedThreadPool.execute(new Runnable() {
    @Override
    public void run() {
    log.info("处理文件,fileName=" + file.getName());
                   do();
    }
    });
    }
    fixedThreadPool.shutdown();
    while (true){
    try {
    Thread.sleep(20000);
    } catch (InterruptedException e) {
    e.printStackTrace();
    }
    if(fileList.size() == totalMap.get("handlerNum")){
    log.info("文件处理完,准备输出结果...");
    do();
    break;
    }
    }

    }
    }
    }
  • 相关阅读:
    C语言01
    C++面试总结更新
    Python网络爬虫与信息提取02
    Self-Driving Car 01
    Python网络爬虫与信息提取01
    Python-03
    Shell
    Python-05
    Python-04
    Python-02
  • 原文地址:https://www.cnblogs.com/lizm166/p/16071844.html
Copyright © 2020-2023  润新知