Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active March 7, 2022 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/c7e21344231955782149cd3686ba114b to your computer and use it in GitHub Desktop.
Save GroupDocsGists/c7e21344231955782149cd3686ba114b to your computer and use it in GitHub Desktop.
How to Move Word Pages in Java
// Rearrange pages of Word Processing documents (DOC/DOCX) in Java
int pageNumber = 7;
int newPageNumber = 2;
MoveOptions moveOptions = new MoveOptions(pageNumber, newPageNumber);
Merger merger = new Merger("path\document.docx");
merger.movePage(moveOptions);
merger.save("path\rearranged-document.docx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment