Package org.docx4j.openpackaging.io3.stores

Examples of org.docx4j.openpackaging.io3.stores.ZipPartStore


 
  public Save(OpcPackage p) {
   
    this.p = p;
//    sourcePartStore = p.getSourcePartStore();
    PartStore targetPartStore;
    if (p.getSourcePartStore()==null) // eg a newly created package
    {
      log.warn("sourcePartStore undefined");
      targetPartStore = new ZipPartStore();
    } else {
      targetPartStore = p.getSourcePartStore();
      targetPartStore.setSourcePartStore(p.getSourcePartStore());
    }
    p.setTargetPartStore(targetPartStore);
   
  }
View Full Code Here


    System.out.println(inputfilepath);       
   
   
    // Load the docx
    File baseDir = new File(inputfilepath);
    UnzippedPartStore partLoader = new UnzippedPartStore(baseDir);
    final Load3 loader = new Load3(partLoader);
    OpcPackage opc = loader.get();
   
    // Save it zipped
    File docxFile = new File(System.getProperty("user.dir") + "/zip.docx");
View Full Code Here

   
    // We want to save images as they're created, so define our saver
    File baseDir = new File(System.getProperty("user.dir") + "/OUT_unzipped");
    baseDir.mkdir(); // TODO: directory should be empty, since old images won't get overwritten
   
    UnzippedPartStore ups = new UnzippedPartStore(baseDir);
    Save saver = new Save(wordMLPackage, ups);
   
   
    // Apply the bindings
   
View Full Code Here

       
    // Save it unzipped   
    File baseDir = new File(System.getProperty("user.dir") + "/OUT");
    baseDir.mkdir();
   
    UnzippedPartStore ups = new UnzippedPartStore(baseDir);
    ups.setSourcePartStore(wordMLPackage.getSourcePartStore());
    Save saver = new Save(wordMLPackage, ups);
   
    saver.save(null);
  }
View Full Code Here

    OpcPackage opc = loader.get();
   
    // Save it zipped
    File docxFile = new File(System.getProperty("user.dir") + "/zip.docx");
   
    ZipPartStore zps = new ZipPartStore();
    zps.setSourcePartStore(opc.getSourcePartStore());
   
    Save saver = new Save(opc, zps);
    FileOutputStream fos = null;
    try {
      fos = new FileOutputStream(docxFile);
View Full Code Here

    StartEvent startEvent = new StartEvent( pkgIdentifier,  WellKnownProcessSteps.PKG_LOAD );
    startEvent.publish();     
   
    if (type.equals(Filetype.ZippedPackage)){
     
      final ZipPartStore partLoader = new ZipPartStore(is);
      final Load3 loader = new Load3(partLoader);
      OpcPackage opcPackage = loader.get();
     
      if (pkgIdentifier!=null) {
        opcPackage.setName(pkgIdentifier.name());
View Full Code Here

//    sourcePartStore = p.getSourcePartStore();
    PartStore targetPartStore;
    if (p.getSourcePartStore()==null) // eg a newly created package
    {
      log.warn("sourcePartStore undefined");
      targetPartStore = new ZipPartStore();
    } else {
      targetPartStore = p.getSourcePartStore();
      targetPartStore.setSourcePartStore(p.getSourcePartStore());
    }
    p.setTargetPartStore(targetPartStore);
View Full Code Here

TOP

Related Classes of org.docx4j.openpackaging.io3.stores.ZipPartStore

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.