PresentationMLPackage presentationMLPackage = PresentationMLPackage.createPackage();
// Need references to these parts to create a slide
// Please note that these parts *already exist* - they are
// created by createPackage() above. See that method
// for instruction on how to create and add a part.
MainPresentationPart pp = (MainPresentationPart)presentationMLPackage.getParts().getParts().get(
new PartName("/ppt/presentation.xml"));
SlideLayoutPart layoutPart = (SlideLayoutPart)presentationMLPackage.getParts().getParts().get(
new PartName("/ppt/slideLayouts/slideLayout1.xml"));
PresentationPropertiesPart presProp = (PresentationPropertiesPart)presentationMLPackage.getParts().getParts().get(
new PartName("/ppt/preseProps.xml"));
// OK, now we can create a slide
SlidePart slidePart = presentationMLPackage.createSlidePart(pp, layoutPart,
new PartName("/ppt/slides/slide1.xml"));
// Create and add shape
Shape sample = ((Shape)XmlUtils.unmarshalString(SAMPLE_SHAPE, Context.jcPML) );
slidePart.getJaxbElement().getCSld().getSpTree().getSpOrGrpSpOrGraphicFrame().add(sample);
// All done: save it
presentationMLPackage.save(new java.io.File(outputfilepath));
System.out.println("\n\n done .. saved " + outputfilepath);
我已经使用上面的CreateHelloworld.java示例创建了一个pptx文档。我修改了它,以便创建的pptx包有presProps.xml。但是当我执行上面的代码时它不会生成....任何帮助将不胜感激
答案 0 :(得分:0)
根据您复制/粘贴的代码顶部的注释,您的代码假定PresentationPropertiesPart已经存在。
没有,所以你必须先创建它。以下应该做的伎俩:
PresentationPropertiesPart ppPart = new PresentationPropertiesPart();
pp.addTargetPart(ppPart);
PresentationPr presProp = Context.getpmlObjectFactory().createPresentationPr();
ppPart.setJaxbElement(presProp);