公共 API Aspose.Cells 8.9.1 的变化
添加的 API
可配置的字体源
Aspose.Cells for Java 公开了一些类来提供对渲染电子表格的可配置字体源的支持。这是已添加 Aspose.Cells for Java 8.9.1 的类列表。
- FontConfigs 类指定字体设置。
- FontSourceBase 类是允许用户指定各种字体源的类的抽象基类。
- FileFontSource 类表示存储在文件系统中的单个 TrueType 字体文件。
- FolderFontSource 类表示包含 TrueType 字体文件的文件夹。
- MemoryFontSource 类表示存储在内存中的单个 TrueType 字体文件。
- FontSourceType 枚举指定字体源的类型。
通过上述更改,Aspose.Cells for Java 允许设置字体,详情如下。
- 使用 FontConfigs.setFontFolder 方法设置一个自定义字体文件夹。
- 使用 FontConfigs.setFontFolders 方法设置多个自定义字体文件夹。
- 使用 FontConfigs.setFontSources 方法时,从自定义字体文件夹、单个字体文件或字节数组中的字体数据设置字体源。
下面是上述方法的简单使用场景。
Java
//Defining string variables to store paths to font folders & font file
String fontFolder1 = "D:/Arial";
String fontFolder2 = "D:/Calibri";
String fontFile = "D:/Arial/arial.ttf";
//Setting first font folder with setFontFolder method
//Second parameter directs the API to search the sub folders for font files
FontConfigs.setFontFolder(fontFolder1, true);
//Setting both font folders with setFontFolders method
//Second parameter prohibits the API to search the sub folders for font files
FontConfigs.setFontFolders(new String[]{ fontFolder1, fontFolder2 }, false);
//Defining FolderFontSource
FolderFontSource sourceFolder = new FolderFontSource(fontFolder1, false);
//Defining FileFontSource
FileFontSource sourceFile = new FileFontSource(fontFile);
//Defining MemoryFontSource
byte[]bytes = Files.readAllBytes(new File(fontFile).toPath());
MemoryFontSource sourceMemory = new MemoryFontSource(bytes);
//Setting font sources
FontConfigs.setFontSources(new FontSourceBase[]{ sourceFolder, sourceFile, sourceMemory});
Aspose.Cells for Java 还允许配置字体替换。当必须进行转换的机器上所需的字体不可用时,此机制很有用。用户可以提供一个字体名称列表来替代最初需要的字体。为了实现这一点,Aspose.Cells API 公开了接受 2 个参数的 FontConfigs.setFontSubstitutes 方法。第一个参数是字符串类型,应该是需要替换的字体名称。第二个参数是一个字符串类型的数组。用户可以提供字体名称列表作为原始字体名称(在第一个参数中指定)的替代。
下面是 FontConfigs.SetFontSubstitutes 方法的简单使用场景。
Java
//Substituting the Arial font with Times New Roman & Calibri
FontConfigs.setFontSubstitutes("Arial", new String[]{ "Times New Roman", "Calibri" });
Aspose.Cells for Java 还提供了收集有关已设置的源和替换信息的方法。
- FontConfigs.getFontSources 方法返回一个 FontSourceBase 类型的数组,其中包含指定字体源的列表。如果没有设置源,FontConfigs.getFontSources 方法将返回一个空数组。
- FontConfigs.getFontSubstitutes 方法接受一个字符串类型的参数,允许指定已设置替换的字体名称。如果没有为指定的字体名称设置替换,则 FontConfigs.getFontSubstitutes 方法将返回 null。
添加了 IFilePathProvider 接口和 HtmlSaveOptions.FilePathProvider 属性
Aspose.Cells for Java 8.9.1 允许获取/设置 IFilePathProvider 以将工作表导出到单独的 HTML 文件。这些新的 API 在一个工作表中的超链接指向另一个工作表中的位置的情况下很有用,在这种情况下,应用程序要求将每个工作表呈现为单独的 HTML 文件。实施 IFilePathProvider 允许保持上述超链接完好无损,而不管它们指向单独的结果 HTML 文件中的位置这一事实。
以下是 HtmlSaveOptions.FilePathProvider 属性的简单使用场景。
Java
//在工作簿的实例中加载电子表格
工作簿 book = new Workbook(dir + "sample.xlsx");
//将每个工作表保存到单独的 HTML 文件
对于 (int i = 0; i< book.getWorksheets().getCount(); i++)
{
book.getWorksheets().setActiveSheetIndex(i);
//Create an instance of HtmlSaveOptions & set FilePathProvider property
HtmlSaveOptions options = new HtmlSaveOptions();
options.setExportActiveWorksheetOnly(true);
options.setFilePathProvider(new IFilePathProvider()
{
public String getFullName(String sheetName)
{
if ("Sheet2".equals(sheetName))
{
return "sheet1.html";
}
else if ("Sheet3".equals(sheetName))
{
return "sheet2.html";
}
return "";
}
});
//Write HTML file to disc
book.save(dir + "sheet"+ i +".html", options);
}
为 Cells.copyRows 方法添加了 CopyOptions.ReferToDestinationSheet 属性和重载
Aspose.Cells for Java API 公开了布尔类型 CopyOptions.ReferToDestinationSheet 属性以及 Cells.copyRows 方法的重载,以便在要复制的行还包含图表及其数据源时方便复制行操作。开发人员可以利用这些新的 API 将图表的数据源指向源或目标工作表。
以下是简单的使用场景。
Java
//Load a sample spreadsheet in an instance of Workbook
Workbook book = new Workbook(dir + "sample.xlsx");
//Access the worksheet containing the chart & its data source
Worksheet source = book.getWorksheets().get(0);
//Add a new worksheet to the collection
Worksheet destination = book.getWorksheets().get(book.getWorksheets().add());
//Initialize CopyOptions and set its ReferToDestinationSheet property to true
CopyOptions options = new CopyOptions();
options.setReferToDestinationSheet(true);
//Copy the rows
destination.getCells().copyRows(source.getCells(), 0, 0, source.getCells().getMaxDisplayRange().getRowCount(), options);
//Save the result on disc
book.save(dir + "output.xlsx");
添加了 CalculationOptions.Recursive 属性
Aspose.Cells for Java 8.9.1 暴露了 Boolean 类型的 CalculationOptions.Recursive 属性。将 CalculationOptions.Recursive 属性设置为 true 并将对象传递给 Workbook.calculateFormula 方法会指示 Aspose.Cells API 在计算依赖于其他单元格的单元格时递归计算依赖单元格。
以下是简单的使用场景。
Java
//Load a sample spreadsheet in an instance of Workbook
Workbook book = new Workbook(dir + "sample.xlsx");
//Initialize CalculationOptions & set Recursive property to true
CalculationOptions options = new CalculationOptions();
options.setRecursive(true);
//Recalculate formulas
book.calculateFormula(options);
过时的 API
废弃的 CellsHelper.FontDir 属性
建议改用文件夹递归为 false 的 FontConfigs.setFontFolder(String, boolean) 方法。
废弃的 CellsHelper.FontDirs 属性
使用 FontConfigs.setFontFolders(String[], boolean) 方法,文件夹递归为 false。
废弃的 CellsHelper.FontFiles 属性
请改用 FontConfigs.setFontSources(FontSourceBase[]) 方法。