我想用aspose 2.5版读取excel文件,我知道在最新版本中我们可以这样做:
send()
我没有在aspose 2.5上找到任何文档。
答案 0 :(得分:1)
请参阅以下示例代码及其示例控制台输出。代码读取源excel文件并打印单元格A1到A10的名称及其值。
<强>爪哇强>
// Open the workbook with inputstream or filepath
Workbook wb = new Workbook();
wb.open("source.xlsx");
// Access first worksheet
Worksheet ws = wb.getWorksheets().getSheet(0);
// Read cells A1 to A10 and print their values
for (int i = 0; i < 10; i++) {
int row = i;
int col = 0;
// Access the cell by row and col indices
Cell cell = ws.getCells().getCell(row, col);
// Print cell name and its value
System.out.println(cell.getName() + ": " + cell.getStringValue());
}
示例控制台输出
A1: 13
A2: 16
A3: 87
A4: 73
A5: 69
A6: 91
A7: 59
A8: 46
A9: 82
A10: 54
注意: 我在Aspose担任开发人员传播者