- Code: Select all
public class HeaderExample {
private static ObjectFactory objectFactory = new ObjectFactory();
public static void main(String[] args) throws Exception {
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage();
MainDocumentPart mdp = wordMLPackage.getMainDocumentPart();
Relationship styleRel = mdp.getStyleDefinitionsPart().getSourceRelationships().get(0);
mdp.getRelationshipsPart().removeRelationship(styleRel);
Relationship relationship = createHeaderPart(wordMLPackage);
createHeaderReference(wordMLPackage, relationship);
wordMLPackage.save(new File("data/docx/Header.docx"));
}
public static Hdr getHdr(WordprocessingMLPackage wordprocessingMLPackage) throws Exception {
Hdr hdr = objectFactory.createHdr();
XHTMLImporterImpl xhtmlImporter = new XHTMLImporterImpl(wordprocessingMLPackage);
List<Object> textContent = xhtmlImporter.convert("<html><body><a href=\"http://google.com\">GOOGLE</a></body></html>", null);
hdr.getContent().addAll(textContent);
return hdr;
}
public static Relationship createHeaderPart(WordprocessingMLPackage wordprocessingMLPackage) throws Exception {
HeaderPart headerPart = new HeaderPart();
Relationship rel = wordprocessingMLPackage.getMainDocumentPart().addTargetPart(headerPart);
headerPart.setJaxbElement(getHdr(wordprocessingMLPackage));
return rel;
}
public static void createHeaderReference(WordprocessingMLPackage wordprocessingMLPackage, Relationship relationship) throws InvalidFormatException {
List<SectionWrapper> sections = wordprocessingMLPackage.getDocumentModel().getSections();
SectPr sectPr = sections.get(sections.size() - 1).getSectPr();
if (sectPr == null) {
sectPr = objectFactory.createSectPr();
wordprocessingMLPackage.getMainDocumentPart().addObject(sectPr);
sections.get(sections.size() - 1).setSectPr(sectPr);
}
HeaderReference headerReference = objectFactory.createHeaderReference();
headerReference.setId(relationship.getId());
headerReference.setType(HdrFtrRef.DEFAULT);
sectPr.getEGHdrFtrReferences().add(headerReference);
}
As a result I got the broken document. Because the line
- Code: Select all
<Relationship TargetMode="External" Target="http://google.com" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" Id="rId4"/>
is not in the header.xml.rels, but in the document.xml.rels
Any suggestions?