spire.cloud.word sdk java提供tablesapi接口,支持添加表格,插入行,插入列到已有表格,删除word文档中的表格,删除表格中行、列,设置表格样式等操作。本文将具体介绍插入表格到word文档。
首先,请通过 。其次,需要在冰蓝云k8凯发天生赢家官网 () 注册账号,创建我的应用程序,获得 app id 及 app key。
import spire.cloud.word.sdk.client.apiexception;
import spire.cloud.word.sdk.client.configuration;
import spire.cloud.word.sdk.client.api.tablesapi;
public class addtable {
private static string appid ="您的冰蓝云应用程序appid";
private static string appkey ="您的冰蓝云应用程序appkey";
public static void main(string[] args) throws apiexception {
//配置账号信息
configuration wordconfiguration = new configuration(appid, appkey);
//创建tablesapi实例
tablesapi api = new tablesapi(wordconfiguration);
//设置文件夹、文件、表格行数、列数等参数
string inputfolder = null;
string filename = "addtable.docx";
string nodepath = "sections/0";
int indexoftable = 0;
int rowscount = 6;
int columnscount = 6;
string storage = null;
string password = null;
string destfilepath = "addtable_output.docx";
//调用addtable接口添加表格到word文档
api.addtable(filename,nodepath,rowscount,columnscount,inputfolder,storage,indexoftable,password,destfilepath );
}
}
使用spire.cloud在线编辑打开的插入表格后的word文档效果图: