Aspose.Total for C++ is a comprehensive suite of APIs that enables developers to easily convert DOT to JSON format within their C++ applications. The process involves two steps, firstly using Aspose.Words for C++ to export DOT to HTML and then using Aspose.Cells for C++ to convert HTML to JSON format.
Aspose.Words for C++ is a powerful API that enables developers to create, edit, render, and convert documents in various formats such as DOC, DOCX, DOT, HTML, ODT, PDF, and RTF. It also provides features such as document manipulation, mail merge, text extraction, and more. With Aspose.Words for C++, developers can easily export DOT to HTML format.
Aspose.Cells for C++ is a powerful API that enables developers to create, manipulate, and convert spreadsheets in various formats such as XLS, XLSX, CSV, HTML, ODS, PDF, and more. It also provides features such as data manipulation, charting, formatting, and more. With Aspose.Cells for C++, developers can easily convert HTML to JSON format.
By using Aspose.Total for C++, developers can easily convert DOT to JSON format within their C++ applications. Aspose.Words for C++ enables developers to export DOT to HTML format and Aspose.Cells for C++ enables developers to convert HTML to JSON format. This makes it easy for developers to quickly and easily convert DOT to JSON format.
Convert DOT to JSON Format via C++
Get Started with C++ File Automation APIs
Install via Package Manager Console of Visual Studio with Install-Package Aspose.Total.Cpp
.
Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .
// supports DOC, DOT, DOCX, DOCM, DOTX, DOTM, RTF, WordML, MOBI, ODT, and OTT file formats | |
// load DOCX as input file format with an instance of Document class | |
auto doc = MakeObject<Document>(u"Input.docx"); | |
// save document in HTML format | |
doc->Save(u"Output.html"); | |
// Load the HTML. | |
intrusive_ptr<Aspose::Cells::IWorkbook> wkb = Factory::CreateIWorkbook(u"Output.html"); | |
// Save in JSON format. | |
wkb->Save(u"Output.json", SaveFormat_Json); |
Convert Protected DOT to JSON Format via C++
Using the API, you can also open the password-protected document. If your input DOT document is password protected, you cannot convert it to JSON format without using the password. To do this, use a special constructor overload, which accepts a LoadOptions object. This object contains the Password property, which specifies the password string.
// supports DOC, DOT, DOCX, DOCM, DOTX, DOTM, RTF, WordML, MOBI, ODT, and OTT file formats | |
// Loads encrypted document. | |
System::SharedPtr<Document> doc = System::MakeObject<Document>(u"LoadEncrypted.docx", System::MakeObject<LoadOptions>(u"aspose")); | |
// save document in HTML format | |
doc->Save(u"Output.html"); | |
// Load the HTML. | |
intrusive_ptr<Aspose::Cells::IWorkbook> wkb = Factory::CreateIWorkbook(u"Output.html"); | |
// Save in JSON format. | |
wkb->Save(u"Output.json", SaveFormat_Json); |