使用我们的 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 以查看详细信息。