使用我們的 REST API,C++ 開發人員可以輕鬆創建 Word 文檔。要製作 Word 文檔格式的文件,您需要使用我們的 C++ Cloud SDK 執行幾個步驟:
由於一個空的 Word 文檔應該正式包含一個段落,因此當您以編程方式創建 Word 文件時,您將獲得這樣一個基本結構。
請注意,可以立即將內容添加到新創建的 Word 文檔中。因此,您將獲得的不僅僅是一個空的 Word 文件,而是一個包含所需內容的文檔。有關如何修改 Word 文檔的更多信息,請參閱 'Edit Word Document' 頁面。
如前所述,我們的 C++ Cloud SDK 允許您以編程方式創建 Word 文檔。您可以嘗試我們強大的功能並評估如何使用以下 C++ 示例創建 Word 文件:
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####",
L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
std::wstring fileName = L"Output.docx";
std::shared_ptr<requests::CreateDocumentRequest> createDocumentRequest(
new requests::CreateDocumentRequest(
std::make_shared<std::wstring>(fileName)
)
);
wordsApi->createDocument(createDocumentRequest);
std::shared_ptr<requests::DownloadFileRequest> downloadDocumentRequest(
new requests::DownloadFileRequest(
std::make_shared<std::wstring>(fileName)
)
);
wordsApi->downloadFile(downloadDocumentRequest);
從 GitHub 克隆 Aspose.Words Cloud SDK for C++ 源代碼。您可以在 "How to use the SDK" 部分找到有關構建和配置 SDK 的詳細信息。
要快速獲取必要的安全憑證並訪問我們的 REST API,請按照文檔中的這些 Instructions 進行操作。
請參閱 Repository Documentation 以查看詳細信息。