0

我正在尝试从 jopendocument 读取 .ods 文件。但是当我试图访问/打印特定单元格的值时,会显示一个空白输出。我的代码是:

for(int nRowIndex = 0; nRowIndex < r; nRowIndex++)
{
int nColIndex = 0;
for( ;nColIndex < t; nColIndex++)
{
System.out.println(sheet.getCellAt(nColIndex, nRowIndex).toString());
}
}

这会打印在控制台上:

<table:table-cell xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" />

任何帮助将不胜感激。

4

1 回答 1

0

该方法getCellAt返回一个 Object 类型Cell,以获取包含的值作为文本使用

sheet.getCellAt(nColIndex, nRowIndex).getTextValue()
于 2012-07-09T13:55:32.260 回答