Spire.Cloud.Excel提供的CellsApi可以用于编辑、操作Excel中的单元格,本文介绍如何使用该接口合并单元格以及对单元格设置格式。
步骤一:创建一个Maven程序,通过Maven仓库安装Spire.Cloud.SDK,详细步骤可参考这篇文章。
步骤二:通过冰蓝云官网(https://cloud.e-iceblue.cn/)注册账号并登陆,在“我的应用”版块创建应用程序,获得App ID及App Key。
步骤三:上传Excel文档至冰蓝云官网的“文档管理”版块。为了便于文档管理,您也可以先创建“input”文件夹,然后将需要编辑的Excel文档上传至该文件夹下。本教程将示例文档(sample.xlsx)上传到了input文件夹下。
步骤四:在Maven程序中编写测试类操作input文件夹下的文档。
示例1、合并单元格
import spire.cloud.excel.sdk.ApiException;
import spire.cloud.excel.sdk.Configuration;
import spire.cloud.excel.sdk.api.CellsApi;
public class MergeCells {
static String appId = "App ID";
static String appKey = "App Key";
static String baseUrl = "https://api.e-iceblue.cn";
//配置App ID和App Key
static Configuration configuration = new Configuration(appId, appKey, baseUrl);
//初始化CellsApi对象
static CellsApi cellsApi = new CellsApi(configuration);
public static void main(String[] args) throws ApiException {
//指定需要合并单元格的文档名称
String name = "sample.xlsx";
//指定工作表
String sheetName = "Sheet1";
//指定需要格并的起始行、列,以及合并的数量
int startRow = 2;
int startColumn = 2;
int totalRows = 5;
int totalColumns = 1;
//指定源文档存放文件夹
String folder = "input";
//指定存储空间,使用冰蓝云默认存储空间,设置为null
String storage = null;
//调用mergeCells方法合并第2列中第2行至第6行的单元格
cellsApi.mergeCells(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage);
//重复上面的步骤合并第2列中第7行至第11行的单元格
startRow = 7;
startColumn = 2;
totalRows = 4;
totalColumns = 1;
cellsApi.mergeCells(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage);
}
}
示例2、设置单元格样式
import spire.cloud.excel.sdk.ApiException;
import spire.cloud.excel.sdk.Configuration;
import spire.cloud.excel.sdk.api.CellsApi;
import spire.cloud.excel.sdk.model.*;
public class FormatCell {
static String appId = "App ID";
static String appKey = "App Key";
static String baseUrl = "https://api.e-iceblue.cn";
//配置App ID和App Key
static Configuration configuration = new Configuration(appId, appKey, baseUrl);
//初始化CellsApi对象
static CellsApi cellsApi = new CellsApi(configuration);
public static void main(String[] args) throws ApiException {
//指定源文档名称
String name = "sample.xlsx";
//指定工作表
String sheetName = "Sheet1";
//指定单元格
String cellName = "B2";
//创建Style对象
Style style = new Style();
//设置字体样式
Font font = new Font();
font.setIsBold(true);
font.setUnderline("Single");
font.setName("宋体");
font.setSize(15);
style.setFont(font);
//设置背景色
style.setBackgroundColor(new Color(255,192,192,192));
//设置对齐方式
style.setHorizontalAlignment("Left");
//指定源文档存放文件夹
String folder = "input";
//指定存储空间,使用冰蓝云默认存储空间,设置为null
String storage = null;
//调用setCellStyle方法对指定单元格设置样式
cellsApi.setCellStyle(name, sheetName, cellName, style, folder, storage);
}
}