I can't seem to create a PPT like this. Any help is appreciated. Thanks.
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);
}
}