java docx4j 使用教程_使用Docx4j操作PPT指南系列(二)

public static void main(String[] args) {

try {

// 加载一个ppt文件作为模板

PresentationMLPackage presentationMLPackage = PresentationMLPackage

.load(new File(PSMSConstants.REPORT_PPT2007_TEMPLATE_PATH));

SlidePart slidePart = (SlidePart) presentationMLPackage.getParts()

.getParts().get(new PartName("/ppt/slides/slide1.xml"));

// 读取XML生成形状

Shape title = (Shape) XmlUtils.unmarshalString(

getSlideTitle("使用Docx4j操作PPT指南系列(二)"), Context.jcPML);

// 注意,主标题与副标题的xml是不同的

Shape subtitle = (Shape) XmlUtils.unmarshalString(

getSubSlideTitle("使用xml 添加标题与副标题"), Context.jcPML);

((Sld) slidePart.getJaxbElement()).getCSld().getSpTree()

.getSpOrGrpSpOrGraphicFrame().add(title);

((Sld) slidePart.getJaxbElement()).getCSld().getSpTree()

.getSpOrGrpSpOrGraphicFrame().add(subtitle);

String path = "c://test.pptx";

presentationMLPackage.save(new java.io.File(path));

} catch (Docx4JException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (JAXBException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

/**

* 生成标题

*

* @param preset

* @return

*/

public static String getSlideTitle(String preset) {

return "

+ "xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" "

+ "xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\">"

+ ""

+ ""

+ ""

+ ""

+ "

"

+ ""

+ ""

+ preset

+ ""

+ ""

+ "

";

}

/**

* 添加副标题

*

* @param preset

* @return

*/

public static String getSubSlideTitle(String preset) {

return "

+ "xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" "

+ "xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\">"

+ ""

+ ""

+ ""

+ ""

+ ""

+ "

"

+ ""

+ preset

+ ""

+ "

";

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值