[
https://issues.apache.org/jira/browse/TIKA-2103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15532909#comment-15532909
]
özay duman commented on TIKA-2103:
----------------------------------
I'm only including tika-core dependency via maven. Does it require tika-parsers
too? When giving file parameter it works as expected.
> 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)