使用我們的 REST API,Dart 開發人員可以輕鬆創建 DOC 文檔。要製作 DOC 文檔格式的文件,您需要使用我們的 Dart/Flutter Cloud SDK 執行幾個步驟:
由於一個空的 DOC 文檔應該正式包含一個段落,因此當您以編程方式創建 DOC 文件時,您將獲得這樣一個基本結構。
請注意,可以立即將內容添加到新創建的 DOC 文檔中。因此,您將獲得的不僅僅是一個空的 DOC 文件,而是一個包含所需內容的文檔。有關如何修改 DOC 文檔的更多信息,請參閱 'Edit DOC Document' 頁面。
如前所述,我們的 Dart/Flutter Cloud SDK 允許您以編程方式創建 DOC 文檔。您可以嘗試我們強大的功能並評估如何使用以下 Dart 示例創建 DOC 文件:
import 'package:aspose_words_cloud/aspose_words_cloud.dart';
final config = Configuration("####-####-####-####-####", "##################");
final wordsApi = WordsApi(config);
final fileName = 'Output.doc';
final createDocumentRequest = CreateDocumentRequest(fileName: fileName);
await wordsApi.createDocument(createDocumentRequest);
final downloadDocumentRequest = DownloadFileRequest(fileName);
await wordsApi.downloadFile(downloadDocumentRequest);
從 GitHub 克隆 Aspose.Words Cloud SDK for Dart 源代碼並在您的項目中使用它。將此依賴項添加到您的 pubspec.yaml: dependencies: aspose_words_cloud: 22.4.0
請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看詳細信息。