poi多线程写

package com.ws.demo;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * @author wangsheng
 * @title: PoiTest
 * @projectName demo
 * @description:
 */
public class PoiTest {
    public static void main(String[] args) {
        multiThreadWrite();
    }

    /**
     * 使用多线程进行Excel写操做,提升写入效率。
     */
    public static void multiThreadWrite() {
        /**
         * 使用线程池进行线程管理。
         */
        ExecutorService es = Executors.newCachedThreadPool();
        /**
         * 使用计数栅栏
         */
        CountDownLatch doneSignal = new CountDownLatch(3);

        HSSFWorkbook wb;
        try {
            wb = new HSSFWorkbook(new FileInputStream("E:\\temp\\poiTest.xls"));
            HSSFSheet sheet = wb.getSheetAt(0);
            es.submit(new PoiWriter(doneSignal, sheet, 0, 19999));
            es.submit(new PoiWriter(doneSignal, sheet, 20000, 39999));
            es.submit(new PoiWriter(doneSignal, sheet, 40000, 59999));
            /**
             * 使用CountDownLatch的await方法,等待全部线程完成sheet操做
             */
            doneSignal.await();
            es.shutdown();
            FileOutputStream os = new FileOutputStream("E:\\temp\\poiTest.xls");
            wb.write(os);
            os.flush();
            os.close();
            System.out.println("Excel completed......");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    /**
     * 测试基本的POI写操做
     */
    public static void poiBasicWriteTest() {
        try {
            HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(
                    "E:\\temp\\poiTest.xls"));
            HSSFSheet sheet = wb.getSheetAt(0);
            HSSFRow row = sheet.createRow(0);
            HSSFCell contentCell = row.createCell(0);
            contentCell.setCellValue("abc");
            FileOutputStream os = new FileOutputStream("E:\\temp\\poiTest.xls");
            wb.write(os);
            os.flush();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * sheet的row使用treeMap存储的,是非线程安全的,因此在建立row时须要进行同步操做。
     * @param sheet
     * @param rownum
     * @return
     */
    private static synchronized HSSFRow getRow(HSSFSheet sheet, int rownum) {
        return sheet.createRow(rownum);
    }

    /**
     * 进行sheet写操做的sheet。
     * @author alex
     *
     */
    protected static class PoiWriter implements Runnable {

        private final CountDownLatch doneSignal;

        private HSSFSheet sheet;

        private int start;

        private int end;

        public PoiWriter(CountDownLatch doneSignal, HSSFSheet sheet, int start,
                         int end) {
            this.doneSignal = doneSignal;
            this.sheet = sheet;
            this.start = start;
            this.end = end;
        }

        public void run() {
            int i = start;
            try {
                while (i <= end) {
                    HSSFRow row = getRow(sheet, i);
                    HSSFCell contentCell = row.getCell(0);
                    if (contentCell == null) {
                        contentCell = row.createCell(0);
                    }
                    contentCell.setCellValue(i + 1);
                    ++i;
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                doneSignal.countDown();
                System.out.println("start: " + start + " end: " + end
                        + " Count: " + doneSignal.getCount());
            }
        }

    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值