简易C# Excel调用Aspose.Cells
By
hi_aardio
at 2022-04-25 • 1人收藏 • 1359人看过
Aspose.Cells是我这些天来用过处理excel,调用相对较方便的C# dll,它的好处是方便,不像libxl读和写都需要区分单元格内容的类型,支持直接从excel读取到dataTable,也方便导出excel .正版 需要授权需要收费,使用的话会有水印(不过不影响傅)。 Aspose.Cells相比NPOI 多了模版语法功能,还是很实用的。
对于复杂表格来说,按模板填充好像也是它的特点之一,实际还用不上,没用过。
相关文档见:
https://docs.aspose.com/cells/net/loading-saving-and-managing/#advance-topics
简单调用如下:
import win.ui; /*DSG{{*/ var winform = win.form(text="aardio form";right=759;bottom=469) winform.add() /*}}*/ import console; console.open(); import dotNet; var dll = dotNet.load("res\Aspose.Cells.dll"); //调用dll var wb = dll.new("Aspose.Cells.Workbook"); //用于新建 //两种方法写入单元格内容 wb.Worksheets[1].Cells.Item(1,1).Value = "hello, world"; // 创建sheet var sheet = wb.Worksheets[1]; // 填值 var cell = sheet.Cells.Item["A1"]; cell.PutValue("Hello World!"); //具体计算公式 sheet.Cells.Item["A10"].PutValue(1); sheet.Cells.Item["B10"].PutValue(1); sheet.Cells.Item["C10"].Formula = "SUM(A10:B10)"; // 保存文件 wb.Save(io.fullpath("res\test.xlsx")) wb.Save(io.fullpath("res\我是xls文件.xls")) //保存xls文件 winform.show(); win.loopMessage(); return winform;
6 个回复 | 最后更新于 2022-08-20
登录后方可回帖
读取excel数据到dataTable