Package words.document

Source Code of words.document.AsposeOpenExistingDoc

package words.document;

import com.aspose.words.Document;
import com.aspose.words.SaveFormat;

public class AsposeOpenExistingDoc
{
  public static void main(String[] args) throws Exception
  {
    Document doc = new Document("data/document.doc");
   
    // Save the document in DOCX format.
    // Aspose.Words supports saving any document in many more formats.
    doc.save("data/Aspose_SaveDoc.docx",SaveFormat.DOCX);
   
        System.out.println("Process Completed Successfully");
  }
}
TOP

Related Classes of words.document.AsposeOpenExistingDoc

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.