[
https://issues.apache.org/jira/browse/TIKA-1859?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15151039#comment-15151039
]
Tim Allison commented on TIKA-1859:
-----------------------------------
Y, this works with your file, but the streaming read that Tika does is not.
{noformat}
XSSFWorkbook wb = new XSSFWorkbook(Files.newInputStream(p));
XSSFSheet sheet = wb.getSheetAt(0);
for (int i = sheet.getFirstRowNum(); i <= sheet.getLastRowNum(); i++) {
XSSFRow row = sheet.getRow(i);
for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++)
{
XSSFCell cell = row.getCell(j);
if (cell != null) {
System.out.print(cell.toString() + "\t");
}
}
System.out.println("");
}
{noformat}
> file poi reads tika does not bring the content
> ----------------------------------------------
>
> Key: TIKA-1859
> URL: https://issues.apache.org/jira/browse/TIKA-1859
> Project: Tika
> Issue Type: Bug
> Components: parser
> Affects Versions: 1.12
> Reporter: Movses
> Priority: Blocker
> Attachments: testing.Xlsx
>
>
> I have a file xlsx I'm able to read and process in using poi but in tika it
> does not extract the content of the file
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)