[
https://issues.apache.org/jira/browse/TIKA-2103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15532799#comment-15532799
]
Tim Allison commented on TIKA-2103:
-----------------------------------
Can you tell us how you're including Tika's depencies? Are you including
tika-parsers via Maven?
> xlsx inputstreams or byte arrays are detected as application/zip
> ----------------------------------------------------------------
>
> Key: TIKA-2103
> URL: https://issues.apache.org/jira/browse/TIKA-2103
> Project: Tika
> Issue Type: Bug
> Components: core
> Affects Versions: 1.13
> Reporter: özay duman
> Priority: Minor
>
> detect method of org.apache.tika.Tika recognizes byte[] and InputStream as
> zip.
> Tika tika = new Tika();
> Path path = Paths.get("C:/abc.xlsx");
> byte[] data = Files.readAllBytes(path);
> String detectType = tika.detect(data);
> System.err.println("Detected type" + detectType);
> prints : Detected typeapplication/zip
> Tika tika = new Tika();
> InputStream targetStream = new FileInputStream(new File("C:/abc.xlsx"));
> String detectType = tika.detect(targetStream);
> System.err.println("Detected type" + detectType);
> prints : Detected typeapplication/zip
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)