在XWPF文档中添加图像作为标题

时间:2015-07-23 09:22:09

标签: java xwpf

如何将图像作为标题添加到XWPF文档中的每个页面? 我已经尝试了所有可以想到的事情,下面是我的代码:

        XWPFDocument docx = new XWPFDocument();
        CTSectPr sectPr = docx.getDocument().getBody().addNewSectPr();
        XWPFHeaderFooterPolicy policy = new XWPFHeaderFooterPolicy(docx, sectPr);
        XWPFHeader header = policy.createHeader(XWPFHeaderFooterPolicy.FIRST);
        String imgFile="sample.png";
        header.addPictureData(new FileInputStream(imgFile), XWPFDocument.PICTURE_TYPE_PNG);
        String nameoffile ="customer"+".docx";       
        FileOutputStream out = new FileOutputStream(nameoffile);
        docx.write(out);
        out.close();

然而,这在java.lang.IndexOutOfBoundsException行给我一个java.lang.IndexOutOfBoundsException

1 个答案:

答案 0 :(得分:0)

您应该为图像添加正确的目录。可能“new FileInputStream(imgFile)”为空。 将您的图像放在目录中,然后将路径设置为:

String imgFile="C:\Users\{user}\Desktop\Project\sample.png";