docx4j 向段落添加样式会破坏文档

docx4j adding style to paragraph destroys document

我正在尝试添加一个包含标题(带样式)和一些纯无格式文本的段落。以下代码销毁文档。

编辑: 执行以下代码并尝试在 word 中打开文档后,我收到一条错误消息 "Unspecified Error" 位置:第 /word/document 部分。xml 第 1 行第 0 列

        ObjectFactory factory = new ObjectFactory();
        P complete = factory.createP();

        org.docx4j.wml.P headline=factory.createP();
        R hrun = factory.createR();
        Text htxt = new Text();
        hrun.getContent().add(htxt);
        htxt.setValue(View_Beta.this.falseAlarmChoice.getSelectedItem().toString());

        headline.getContent().add(hrun);        



    org.docx4j.wml.PPr  pPr = factory.createPPr();
        headline.setPPr(pPr);
        org.docx4j.wml.PPrBase.PStyle pStyle = factory.createPPrBasePStyle();
        pPr.setPStyle(pStyle);
        pStyle.setVal("Title"); 
        complete.getContent().add(headline);

        P ptext = factory.createP();
        R rtext = factory.createR();
        Text ttext = new Text();
        rtext.getContent().add(ttext);
        ptext.getContent().add(rtext);

        ttext.setValue(falseAlarmChoice.getSelectedItem()
                + falseAlarmDsc.getText());
        complete.getContent().add(ptext);

        //add to document context
        View_Beta.this.c.insertAtPos(complete,
                paragraphlst.getSelectedIndex());

在您的代码中,

complete.getContent().add(headline) 

在段落中添加一个段落,根据 Open XML 规范这是无效的。