Package org.docx4j.events

Examples of org.docx4j.events.PackageIdentifier


   *           
   * @Since 2.8.0          
   */ 
  public static OpcPackage load(final java.io.File docxFile, String password) throws Docx4JException {
   
    PackageIdentifier name = new PackageIdentifierTransient(docxFile.getName());
   
    try {
      return OpcPackage.load(name, new FileInputStream(docxFile), password );
    } catch (final FileNotFoundException e) {
      OpcPackage.log.error(e.getMessage(), e);
View Full Code Here

TOP

Related Classes of org.docx4j.events.PackageIdentifier

Copyright © 2018 www.massapicom. 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.