Document document = new Document ("xxx.docx");
Paragraph paragraph = getPara(document);
Document deepCloneDoc = document.deepClone();
请问有一个文档对象document,它其中的一个段落为 paragraph ,
document经过克隆获得deepCloneDoc ,那么怎么获得deepCloneDoc 的 paragraph 呢
Document document = new Document ("xxx.docx");
Paragraph paragraph = getPara(document);
Document deepCloneDoc = document.deepClone();
请问有一个文档对象document,它其中的一个段落为 paragraph ,
document经过克隆获得deepCloneDoc ,那么怎么获得deepCloneDoc 的 paragraph 呢
@ouchli 您应该从克隆文档中获取该段落。 例如:
Document sourceDocument = new Document("xxx.docx");
Paragraph sourceParagraph = sourceDocument.getFirstSection().getBody().getParagraphs().get(0);
Document clonedDocument = sourceDocument.deepClone();
Paragraph clonedParagraph = clonedDocument.getFirstSection().getBody().getParagraphs().get(0);
如果我并不知道这个sourceParagraph 段落的具体位置,该怎么去获取呢