Package org.openxml4j.opc

Examples of org.openxml4j.opc.Package.save()


    paragraphs.add(paragraphs.size() - 1, paragraph);

    // Save back the content into the part
    StreamHelper.saveXmlInStream(doc, coreDocumentPart.getOutputStream());

    pkg.save(new File(demoCore.getTestRootPath() + "sample_output.docx"));
  }
}
View Full Code Here


      coreProps.setDescriptionProperty("A new description !");
      coreProps
          .setTitleProperty("Demo : change document core properties");

      // Save document
      pkg.save(destFile);
    } catch (Exception e) {
      e.printStackTrace();
      return;
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.