Spire.Cloud.Word Java SDK给开发人员提供了WordDocumentApi接口,支持创建Word文档和获取文档对象。本文将介绍如何调用WordDocumentApi接口创建Word文档。
首先:通过Maven仓库安装Spire.Cloud.SDK jar包及依赖,详细步骤可参考这篇文章。
其次:通过冰蓝云官网(https://cloud.e-iceblue.cn/)注册账号并登陆,在“我的应用”创建应用程序,获得App ID及App Key。
import spire.cloud.word.sdk.client.*;
import spire.cloud.word.sdk.client.api.WordDocumentApi;
public class CloudWord {
static String appId = "App ID";
static String appKey = "App Key";
static String baseUrl = "https://api.e-iceblue.cn";
//配置App ID和App Key
static Configuration wordConfiguration = new Configuration(appId, appKey, baseUrl);
//新建WordDocumentApi实例
static WordDocumentApi wordDocumentApi = new WordDocumentApi(wordConfiguration);
public static void main(String[] args) throws ApiException {
//设置文档格式为.docx,也支持doc, rtf, wordml, docm, dotx, dot, dotm
String fileFormat = "docx";
//设置文档名称
String name = "newDocument";
//设置文件夹名称
String destFolder = "output";
//使用冰蓝云配置的2G空间存贮文档,可设置为null
String storage = null;
//创建Word文档并保存到指定路径
wordDocumentApi.createDocument(fileFormat, name, destFolder, storage);
}
}
使用Spire.Cloud在线编辑打开生成的空白文档效果图: