请我如何给msword的每一页设置不同的页面(纸张方向)

我使用bulid进行了文档的嵌入

NodeCollection runs = mainDoc.getChildNodes(NodeType.PARAGRAPH, true); //获取所有节点
int dell = 0 ;
for (int i = 0; i < runs.getCount(); i++) {
    Paragraph r = (Paragraph) runs.get(i);
    String text = r.getRange().getText();//获取段落文本
    if(text.length()>=key.length() && text.indexOf(key)>=0) {
        //指定段落插入表格
        Builder.moveTo(r);
        Builder.getPageSetup().setPaperSize(PaperSize.A4);
        Section parentSection = r.getParentSection();

        if (isPortrait){
           // Builder.getPageSetup().setOrientation(Orientation.PORTRAIT);
            //parentSection.getPageSetup().setOrientation(Orientation.PORTRAIT);
       

        }
        else {
            //parentSection.getPageSetup().setOrientation(Orientation.LANDSCAPE);
        }
	}
}

我尝试使用上面的方式 他并没有生效,我也尝试去使用builder.insertBreak(BreakType.BreakType.SECTION_BREAK_NEW_PAGE)后再次设置不同的方向,同样不奏效。而针对整个Builder的方向设置似乎是统一的
希望得到解答

@JIYO_SANG 我简化了您的代码,一切正常。 代码如下

Document doc = new Document("input.docx");
DocumentBuilder builder = new DocumentBuilder(doc);

NodeCollection<Run> runs = doc.getChildNodes(NodeType.RUN, true);
for (Run run : runs) {
    String text = run.getRange().getText();
    if(text.contains("Text")) {
        builder.getPageSetup().setPaperSize(PaperSize.A4);
        builder.getCurrentSection().getPageSetup().setOrientation(Orientation.LANDSCAPE);
    }
}

doc.save("output.docx");

请尝试使用 builder.getCurrentSection().getPageSetup().setOrientation 来使用正确的部分。

感谢解答,顺便问一句,我是否可以对插入文档的空白部分进行调整。我将文字插入到word中,或word的表格中,当文档的内容是简短的文字时 ,上下部分出现大片的空白

@JIYO_SANG 没有代码,很难理解会发生什么。 也许你在插入文本时使用了特定的样式,因此需要使用 builder.getParagraphFormat().clearFormatting(); 来避免文本之间出现大的空格。

首先标题里提到的问题被完美解决了,十分感谢!
关于第二个问题 可能我没有描述清除 在我上传的图片里 标题"二"与标题"三"之间,内容是一个完整的word文档,它由CompositeNode.insertAfter 完成。这个文档独立打开时只有一段文字,但是在合并之后,出现了如图所示的空隙
这是合并文档的代码

   private static void insertDocumentAfterNode(Node insertAfterNode, Document mainDoc, Document srcDoc) throws Exception  {
        if (insertAfterNode.getNodeType() != 8 && insertAfterNode.getNodeType() != 5) {
            throw new Exception("The destination node should be either a paragraph or table.");
        }else {
            CompositeNode dstStory = insertAfterNode.getParentNode();
            Body body = srcDoc.getLastSection().getBody();
            while (null != body.getLastParagraph() && !body.getLastParagraph().hasChildNodes()){
                srcDoc.getLastSection().getBody().getLastParagraph().remove();
            }

            NodeImporter importer = new NodeImporter(srcDoc, mainDoc, ImportFormatMode.KEEP_DIFFERENT_STYLES);
            int sectCount = srcDoc.getSections().getCount();

            for (int sectIndex = 0; sectIndex < sectCount; ++sectIndex){
                Section srcSection = srcDoc.getSections().get(sectIndex);
                int nodeCount = srcSection.getBody().getChildNodes().getCount();
                for (int nodeIndex = 0; nodeIndex < nodeCount; ++nodeIndex){
                    Node srcNode = srcSection.getBody().getChildNodes().get(nodeIndex);
                    Node newNode = importer.importNode(srcNode, true);
                    dstStory.insertAfter(newNode, insertAfterNode);
                    insertAfterNode = newNode;
                }
            }
        }
    }

@JIYO_SANG 遗憾的是,我无法在我的文件中重现这个问题。 您能否提供用于合并的文件?

会议记录表(新).docx (28.9 KB)

插入的文档.docx (14.3 KB)

顺便再附上调用上面方法的代码

DocumentBuilder Builder = new DocumentBuilder(mainDoc);
DocumentBuilder addBuilder = new DocumentBuilder(addDoc);
Range range = mainDoc.getRange();
NodeCollection runs = mainDoc.getChildNodes(NodeType.PARAGRAPH, true); //获取所有节点
int dell = 0 ;
for (int i = 0; i < runs.getCount(); i++) {
Paragraph r = (Paragraph) runs.get(i);
String text = r.getRange().getText();//获取段落文本
if(text.length()>=key.length() && text.indexOf(key)>=0) {
//指定段落插入表格
Builder.getPageSetup().setPaperSize(PaperSize.A4);
Section currentSection = Builder.getCurrentSection();
if (isPortrait){
currentSection.getPageSetup().setOrientation(Orientation.PORTRAIT);
// addBuilder.getCurrentSection().getPageSetup().setOrientation(Orientation.PORTRAIT);
}
else {
currentSection.getPageSetup().setOrientation(Orientation.LANDSCAPE);
// addBuilder.getCurrentSection().getPageSetup().setOrientation(Orientation.LANDSCAPE);
}
Builder.moveTo(r);
//range.replace(keyy, “” , true, false); //替换标记为空
Node insertAfterNode = Builder.getCurrentParagraph().getPreviousSibling();
insertDocumentAfterNode(insertAfterNode, mainDoc , addDoc);
r.remove();//删除标记所在行
break;
}
}
// mainDoc.updateFields();
return mainDoc;

@JIYO_SANG 似乎预期的行为和MS Word产生了相同的结果。要获得预期的结果,您需要设置“setSpaceBefore”和“setSpaceAfter”:

private static void insertDocumentAfterNode(Node insertAfterNode, Document mainDoc, Document srcDoc) throws Exception {
    if (insertAfterNode.getNodeType() != NodeType.PARAGRAPH && insertAfterNode.getNodeType() != NodeType.TABLE) {
        throw new Exception("The destination node should be either a paragraph or table.");
    } else {
        CompositeNode dstStory = insertAfterNode.getParentNode();

        Body body = srcDoc.getLastSection().getBody();
        while (null != body.getLastParagraph() && !body.getLastParagraph().hasChildNodes()) {
            srcDoc.getLastSection().getBody().getLastParagraph().remove();
        }

        body.getFirstParagraph().getParagraphFormat().setSpaceBefore(0);
        body.getLastParagraph().getParagraphFormat().setSpaceAfter(0);

        NodeImporter importer = new NodeImporter(srcDoc, mainDoc, ImportFormatMode.KEEP_DIFFERENT_STYLES);
        int sectCount = srcDoc.getSections().getCount();

        for (int sectIndex = 0; sectIndex < sectCount; ++sectIndex) {
            Section srcSection = srcDoc.getSections().get(sectIndex);
            int nodeCount = srcSection.getBody().getChildNodes(NodeType.ANY, false).getCount();
            for (int nodeIndex = 0; nodeIndex < nodeCount; ++nodeIndex) {
                Node srcNode = srcSection.getBody().getChildNodes(NodeType.ANY, false).get(nodeIndex);
                Node newNode = importer.importNode(srcNode, true);
                dstStory.insertAfter(newNode, insertAfterNode);
                insertAfterNode = newNode;
            }
        }
    }
}