문서 편집 기능을 사용하면 DOCX 파일을 로드, 편집, 저장할 수 있습니다. 다음은 Java를 사용하여 문서 편집을 수행하는 방법에 대한 예입니다.
Java에서 DOCX 파일을 편집하는 방법
// Instantiate Editor object by loading the input file
Editor editor = new Editor(inputFilePath);
// Open input document for edit — obtain an intermediate document, that can be edited
EditableDocument beforeEdit = editor.edit();
// Grab document content and associated resources from editable document
String content = beforeEdit.getContent();
Java용 GroupDocs.Editor를 사용하여 Word 문서 내의 양식 필드를 쉽게 편집할 수 있습니다. Java를 사용하여 Word 문서의 양식 필드를 편집하는 방법은 다음과 같습니다.
Java용 GroupDocs.Editor를 사용하여 Word 문서의 양식 필드를 편집하는 방법
Editor editorDocx = new Editor(docxInputFilePath);
// Check it
IDocumentInfo infoDocx = editorDocx.getDocumentInfo(null);
if (infoDocx instanceof WordProcessingDocumentInfo) {
isWordProcessing = "yes";
}