Как создать PowerPoint с нуля с Apache POI? - PullRequest
0 голосов
/ 05 ноября 2018

Я не могу создать такой PPT. Любая помощь приветствуется. Спасибо.

public static void main(String[] args) throws Exception{            
File file=new File("/Users/Rakuten/Desktop/Test/example2.ppt");
    try {
    FileOutputStream out= new FileOutputStream(file);
    SlideShowFactory.create(file);
    out.close();
    } 
catch (Exception e) {
        System.out.println(e);
    }   

        }
...