PRODUCT_NAME_ALT

Merge FODS to MHTML for Free in nodejs

Use a free app or Nodejs SDK to merge FODS and MHTML, along with several popular formats from Microsoft® Excel.

Nodejs Code for Merging FODS Files into MHTML: A Complete Guide

// Merge FODS to HTML
//Code will be available soon
%!(EXTRA string=FODS, string=HTML)
// Merge HTML to MHTML
const requestDocument = fs.createReadStream(localFile);
const requestDocumentListDocumentEntries0FileReferenceStream = fs.createReadStream(BaseTest.localBaseTestDataFolder + localFile);
const requestDocumentListDocumentEntries0FileReference = model.FileReference.fromLocalFileContent(requestDocumentListDocumentEntries0FileReferenceStream);
const requestDocumentListDocumentEntries0 = new model.DocumentEntry({
    fileReference: requestDocumentListDocumentEntries0FileReference,
    importFormatMode: "KeepSourceFormatting"
})
const requestDocumentListDocumentEntries = [
    requestDocumentListDocumentEntries0
]
const requestDocumentList = new model.DocumentEntryList({
    documentEntries: requestDocumentListDocumentEntries
})
const appendRequest = new model.AppendDocumentOnlineRequest({
    document: requestDocument,
    documentList: requestDocumentList
});

wordsApi.appendDocumentOnline(appendRequest)
.then((appendRequestResult) => {
    // tslint:disable-next-line:no-console
    console.log("Result of appendRequest: ", appendRequestResult);
});
%!(EXTRA string=HTML, string=MHTML)

How to Merge FODS to MHTML in Cloud Apps

  1. Initialize WordsApi with Client Id, Client Secret, Base URL & API version
  2. Set requestDocument assign the local FODS file name
  3. Set requestDocumentListDocumentEntriesFileReference and assign local MHTML file name
  4. Set requestDocumentListDocumentEntries and set file_reference, import_format_mode parameters
  5. Create DocumentEntryList instance and assing requestDocumentListDocumentEntries to document_entries parameter
  6. Call AppendDocumentOnlineRequest to merge FODS file with MHTML document requestDocument and requestDocumentList
  7. Call WordsApi appendDocumentOnline with parameters

Get Started with Aspose.Total REST APIs

  1. Create an account at Dashboard to get free API quota & authorization details
  2. Get Aspose.Words and Aspose.Cells Cloud SDKs for Nodejs source code from Aspose.Words GitHub and Aspose.Cells GitHub repos to compile/use the SDK yourself or head to the Releases for alternative download options.
  3. Also have a look at Swagger-based API Reference for Aspose.Words and Aspose.Cells to know more about the REST API.

How to Merge Excel FODS with Other Formats Online

Enhance your document management capabilities by merging FODS files into other formats using the powerful Aspose.Cells API. Easily integrate your merged files with other Aspose.Total APIs like Aspose.Words, Aspose.PDF, Aspose.Email, Aspose.Slides, Aspose.Diagram, Aspose.Tasks, Aspose.3D, Aspose.HTML. This versatile solution enables you to combine files into a single document across multiple formats.

For a comprehensive list of supported formats and merging capabilities, visit the Aspose.Total Cloud page.

FAQ

  • What is FODS Format?
    A file with .fods extension is a type of OpenDocument Spreadsheet document format that stores data in rows and columns. The format is specified as part of ODF 1.2 specifications published and maintained by OASIS. FODS files cannot be opened with Excel, another Spreadsheet software application by Microsoft. FODS files can be saved as ODS using LibreOffice and can be converted to other formats such as XLS and XLSX.
  • What is MHTML Format?
    Files with MHTML extension represent a web page archive format that can be created by a number of different applications. The format is known as archive format because it saves the web HTML code and associated resources in a single file. These resources include anything linked to the webpage such as images, applets, animations, audio files and so on. MHTML files can be opened in a variety of applications such as Internet Explorer and Microsoft Word. Microsoft Windows uses MHTML file format for recording scenarios of problems observed during the usage of any application on Windows that raises issues. The MHTML file format encodes the page contents similar to specifications defined in message/rfc822 which is plain text email related specifications. The actual specifications of the format are as detailed by RFC 2557.
  • How can I get started with Aspose.Total REST APIs?
    Quickstart not only guides through the initialization of Aspose.Total Cloud API, it also helps in installing the required libraries.
  • Where can I see the release notes for Aspose.Total Cloud API?
    Complete release notes can be reviewed at Aspose.Total Cloud Documentation.
  • Is it safe to merge FODS to MHTML in the Cloud?
    Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
  • What file formats are supported by Aspose.Total Cloud API?
    Aspose.Total Cloud can merge file formats from any product family to any other product family to PDF, DOCX, XPS, image(TIFF, JPEG, PNG BMP), MD and more. Checkout the complete list of supported file formats.
  • I can not find the SDK for my favorite language. What should I do?
    Aspose.Total Cloud is also available as a Docker Container. Try using it with cURL in case your required SDK is not available yet.