Transform SVG to MHTML via Java

On Premise Java API to Render SVG to MHTML without using any third party application

SVG Conversion via C# .NET SVG Conversion via C++ SVG Conversion in Android Apps

 

Converting SVG to MHTML is a simple two-step process that can be accomplished using the powerful Document Processing API Aspose.Words for Java. Aspose.Words for Java is part of the Aspose.Total for Java package, which provides a comprehensive set of APIs for manipulating documents.

The first step is to render the SVG file to DOC using Aspose.PDF for Java. Aspose.PDF for Java is a powerful PDF manipulation API that enables you to convert SVG to DOC quickly and easily. Once the SVG file is rendered to DOC, the second step is to convert the DOC to MHTML using Aspose.Words for Java. Aspose.Words for Java is a powerful document processing API that enables you to convert DOC to MHTML with ease.

The process of converting SVG to MHTML is simple and straightforward. All you need to do is render the SVG file to DOC using Aspose.PDF for Java, and then convert the DOC to MHTML using Aspose.Words for Java. Both APIs are part of the Aspose.Total for Java package, which provides a comprehensive set of APIs for manipulating documents. With these two APIs, you can easily convert SVG to MHTML in just a few simple steps.

Java API to Convert SVG to MHTML

  1. Open SVG file using Document class
  2. Convert SVG to DOC by using save method
  3. Load DOC file by using Document class of Aspose.Words
  4. Save the document to MHTML format using save method and set MHTML as SaveFormat

Get Started with Java File Manipulation APIs

You can easily use Aspose.Total for Java directly from a Maven based project and include Aspose.PDF for Java and Aspose.Words for Java in your pom.xml.

Alternatively, you can get a ZIP file from downloads .

// load SVG file with an instance of Document class
Document document = new Document("template.svg");
// save SVG as a DOC 
document.save("DocOutput.doc", SaveFormat.DOC); 
// load DOC with an instance of Document
Document outputDocument = new com.aspose.words.Document("DocOutput.doc");
// call save method while passing SaveFormat.MHTML
outputDocument.save("output.mhtml", SaveFormat.MHTML);   

Open Password Protected SVG Document via Java

While converting SVG to MHTML, even if your document is password protected, you can still open it using PDF Manipulation API Aspose.PDF for Java . In order to open the encrypted file, you need to create a Document object and open the SVG using the owner’s password.

Document document = new Document("input.svg", "password");
// save SVG as a DOC 
document.save("DocOutput.doc", SaveFormat.DOC);

Save MHTML Document to a Database via Java

While saving your input document to MHTML file format, you can also save your document to database instead of a file system. You may need to implement storing and retrieving Document objects to and from a database. This would be necessary if you were implementing any type of content management system. In order to save your MHTML to database it is often necessary to serialize the document to obtain a byte array. This can be done using Aspose.Words for Java API. After getting your byte array, you can store it in the database using SQL statement.

public static void StoreToDatabase(Document doc, Connection mConnection) throws Exception {
    // create an output stream which uses byte array to save data
    ByteArrayOutputStream aout = new ByteArrayOutputStream();
    // save the document to byte array
    doc.save(aout, SaveFormat.MHTML);
    // get the byte array from output steam
    // the byte array now contains the document
    byte[] buffer = aout.toByteArray();
    // get the filename from the document.
    String fileName = doc.getOriginalFileName();
    String filePath = fileName.replace("\\", "\\\\");
    // create the SQL command.
    String commandString = "INSERT INTO Documents (FileName, FileContent) VALUES('" + filePath + "', '" + buffer + "')";
    Statement statement = mConnection.createStatement();
    statement.executeUpdate(commandString);
}  

Explore SVG Conversion Options with Java

Convert SVG to ODP (OpenDocument Presentation Format)
Convert SVG to OTP (OpenDocument Standard Format)
Convert SVG to POT (Microsoft PowerPoint Template Files)
Convert SVG to POTM (Microsoft PowerPoint Template File)
Convert SVG to POTX (Microsoft PowerPoint Template Presentation)
Convert SVG to POWERPOINT (Presentation Files)
Convert SVG to PPS (PowerPoint Slide Show)
Convert SVG to PPSM (Macro-enabled Slide Show)
Convert SVG to PPSX (PowerPoint Slide Show)
Convert SVG to PPT (PowerPoint Presentation)
Convert SVG to PPTM (Macro-enabled Presentation File)
Convert SVG to SWF (Shockwave Flash Movie)
Convert SVG to DOCM (Microsoft Word 2007 Marco File)
Convert SVG to DOT (Microsoft Word Template Files)
Convert SVG to DOTM (Microsoft Word 2007+ Template File)
Convert SVG to DOTX (Microsoft Word Template File)
Convert SVG to FLATOPC (Microsoft Word 2003 WordprocessingML)
Convert SVG to GIF (Graphical Interchange Format)
Convert SVG to MARKDOWN (Lightweight Markup Language)
Convert SVG to ODT (OpenDocument Text File Format)
Convert SVG to OTT (OpenDocument Template)
Convert SVG to PCL (Printer Command Language)
Convert SVG to PS (PostScript File)
Convert SVG to RTF (Rich Text Format)
Convert SVG to WORDML (Microsoft Word 2003 WordprocessingML)
Convert SVG to XAMLFLOW (Microsoft's Power Automate)
Convert SVG to CSV (Comma Seperated Values)
Convert SVG to DIF (Data Interchange Format)
Convert SVG to EXCEL (Spreadsheet File Formats)
Convert SVG to FODS (OpenDocument Flat XML Spreadsheet)
Convert SVG to MD (Markdown Language)
Convert SVG to ODS (OpenDocument Spreadsheet)
Convert SVG to SXC (StarOffice Calc Spreadsheet)
Convert SVG to TSV (Tab-separated Values)
Convert SVG to TXT (Text Document)
Convert SVG to XLAM (Excel Macro-Enabled Add-In)
Convert SVG to XLSB (Excel Binary Workbook)
Convert SVG to XLSM (Macro-enabled Spreadsheet)
Convert SVG to XLT (Excel 97 - 2003 Template)