最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Can we have PPT slide creation with multuthreading using apache-poi which can return single final PPT - Stack Overflow

programmeradmin0浏览0评论

So i will be creating set of 10 slides for each scenarios, and say i may have around 30 scenarios. So i was trying to make this concurrent where the generation of data and creating slide should be made concurrently.

 futures.add(executorService.submit(() -> {
                                try {
                                    List<PowerPointSlideSpec> pptSlides = generalPptGenerator.processSiteResults();
    
                                    XMLSlideShow threadTemplate = prepareTemplate(TemplateType.BASIC); 
                                    SlideResolver slideResolver = new SlideResolver(threadTemplate);
                                    pptSlides.forEach(slideResolver::resolve); 
    
                                    return threadTemplate; // Return thread-local XMLSlideShow
                                } catch (Exception e) {
                                    log.error("Error processing site result " + siteResult.getName(), e);
                                    throw new RuntimeException("Error processing site result: " + siteResult.getName(), e);
                                }

After combining the future lists of XMLSlideShow from executorService and forming a single list of XMLSlideShow called threadReports i tried the below code to combine the slides.

XMLSlideShow finalReport = prepareTemplate(TemplateType.BASIC);
        for (XMLSlideShow threadReport : threadReports) {
            for (XSLFSlide slide : threadReport.getSlides()) {
                if (finalReport != null) {
                    finalReport.createSlide().importContent(slide);
                }
            }
        }

But then this is not a efficient way to combine the slides together. i have to again copy each slide to a new final XMLSlideShow which takes even more time than expected. Any better way of doing this, does apache-poi allow combining multiple slides created separately?

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论