Hello guys,
I'm trying to get the HTML in the header but i'm not having too much luck. Can anyone please tell me what i'm doing wrong?
if i want to add the html to the body i would just
/**
* @param html
* @param wordMLPackage
* @throws InvalidFormatException
* @throws ReportGenerationException
*/
private static void addChunk(final String html, final WordprocessingMLPackage wordMLPackage) throws InvalidFormatException, ReportGenerationException {
final AlternativeFormatInputPart part = createHTMLPart(html);
final MainDocumentPart ...