使用 aspose 版本 2.5 读取 excel 文件

read excel file with aspose version 2.5

我想用 aspose 2.5 版读取 excel 文件,我知道在最新版本中我们可以这样做: Workbook w = new Workbook(fileStream); Cells cells = w.getWorksheets().get(0).getCells();

我没有找到任何关于 aspose 2.5 的文档。

请查看以下示例代码及其示例控制台输出。代码读取源 excel 文件并打印单元格 A1 到 A10 的名称及其值。

Java

// 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 担任开发人员布道师