Convert MHT to XLSX via Java
Sample code for MHT to XLSX Java conversion. Programmers can use this example code to export MHT to XLSX within any Web or Desktop Java based Application.
Convert MHT to XLSX in Java
Convert programmatically MHT to XLSX format with a modern Java API. Use just a few lines of code to convert MHT to XLSX. The Aspose.PDF library will allow any developer to easily solve the tasks of converting MHT to XLSX using the Java. For a more detailed description of the code snippet and other possible conversion formats, see the Documentation pages. Also, you can check the quality of converting file to file directly in your browser online in a second. In order to convert MHT to XLSX, we’ll use Aspose.PDF for Java API which is a feature-rich, powerful, and easy to use conversion API for Java platform. You can download its latest version directly from Maven and install it within your Maven-based project by adding the following configurations to the pom.xml. Check the details of Installing the Library on the Documentation pages.
Repository
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
Dependency
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-pdf</artifactId>
<version>version of aspose-pdf API</version>
<classifier>jdk17</classifier>
</dependency>
How to Convert MHT to XLSX
Java developers can easily load & convert MHT files to XLSX in just a few lines of code.
- Initialize a new Document
- Call the Document.Save method while passing the output file path & SaveFormat.Xlsx as parameters
- Save the output XLSX file
System Requirements
Aspose.PDF for Java is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with Java Runtime Environment for JSP/JSF Application and Desktop Applications.
- Development environment like Eclipse or IntelliJ IDEA.
- Aspose.PDF for Java library referenced in your project.
This sample code shows MHT to XLSX Java Conversion
public static void ConvertMHTtoXLSX()
{
// load MHT with an instance of Document
Document document = new Document("template.mht", new MhtLoadOptions());
// save document in XLS format
document.save("output.xlsx", new ExcelSaveOptions());
}