Aspose.Total for Java is a comprehensive suite of components that enables developers to easily convert MHTML to XAML within any Java J2SE, J2EE, or J2ME application. The process involves two steps, both of which are made possible by components included in Aspose.Total for Java.
The first step is to export MHTML to PPTX using Aspose.PDF for Java. This powerful component enables developers to create, edit, and convert PDF documents from within their Java applications. It also provides the ability to export MHTML to PPTX, allowing developers to quickly and easily convert MHTML to the PowerPoint format.
The second step is to convert PPTX to XAML using Aspose.Slides for Java. This component provides a comprehensive set of features for working with PowerPoint documents, including the ability to convert PPTX to XAML. It also provides a range of other features, such as the ability to create, edit, and manipulate presentations, as well as the ability to generate thumbnails, extract text, and more.
By using Aspose.Total for Java, developers can quickly and easily convert MHTML to XAML within any Java application. The process involves two steps, both of which are made possible by components included in Aspose.Total for Java. Firstly, Aspose.PDF for Java can be used to export MHTML to PPTX. Secondly, Aspose.Slides for Java can be used to convert PPTX to XAML. This makes it easy for developers to quickly and easily convert MHTML to XAML within any Java application.
Java API to Convert MHTML to XAML
- Open MHTML file using Document class
- Convert MHTML to PPTX by using save method
- Load PPTX document by using Presentation class
- Save the document to XAML format using
save
method and set
Xaml
as SaveFormat
Get Started with Java File Format APIs
You can easily use Aspose.Total for Java directly from a Maven based project and include Aspose.PDF for Java and Aspose.Slides for Java in your pom.xml.
Alternatively, you can get a ZIP file from downloads .
// load MHTML file with an instance of Document class
Document document = new Document("template.mhtml");
// save MHTML as PPTX format
document.save("PptxOutput.pptx", SaveFormat.Pptx);
// instantiate a Presentation object that represents a PPTX file
Presentation presentation = new Presentation("PptxOutput.pptx");
// save the presentation as Xaml format
presentation.save("output.xaml", SaveFormat.Xaml);
Open Encrypted MHTML File via Java
While loading MHTML file format, your document might be password protected. Aspose.PDF for Java allows you open encrypted documents as well. In order to open the encrypted file, you can initialize new instance of the Document class and pass filename and password as arguments.
// open MHTML document
Document doc = new Document("input.mhtml", "Your@Password");
// save MHTML as PPTX format
document.save("PptxOutput.pptx", SaveFormat.Pptx);
Save XAML File with Predefined View Type via Java
After converting MHTML to XAML, you can also add predefined view type for your presentation. Aspose.Slides for Java provides a facility to set the view type for the generated presentation when it is opened in PowerPoint through the ViewProperties class. The setLastView property is used to set the view type by using the ViewType enumerator.
// instantiate a Presentation object that represents a PPTX file
Presentation presentation = new Presentation("PptxOutput.pptx");
// set view type
presentation.getViewProperties().setLastView((byte) ViewType.SlideMasterView);
// save the presentation as Xaml format
presentation.save("output.xaml", SaveFormat.Xaml);