[
https://issues.apache.org/jira/browse/TIKA-2961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109878#comment-17109878
]
Hudson commented on TIKA-2961:
------------------------------
SUCCESS: Integrated in Jenkins build Tika-trunk #1814 (See
[https://builds.apache.org/job/Tika-trunk/1814/])
TIKA-2961 Make the CAF mime magic more specific to avoid false (nick:
[https://github.com/apache/tika/commit/0bf11aec86079b8f1ae2f1ea680910ba79665c4f])
* (edit) tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml
> Tika 在识别以caff开始的txt文档时会把它错误地识别为audio/x-caf 音频类型
> -----------------------------------------------
>
> Key: TIKA-2961
> URL: https://issues.apache.org/jira/browse/TIKA-2961
> Project: Tika
> Issue Type: Bug
> Components: core
> Affects Versions: 1.20
> Reporter: Feng Jiao Jiang
> Priority: Critical
> Labels: newbie
> Attachments: 1.txt
>
>
> public String getFileType(File file) {
> String fileType = "";
> try {
> Tika tika = new Tika();
> fileType = tika.detect(file);
> } catch (Exception e) {
> e.printStackTrace();
> }
> return fileType;
> }
> 以上代码在识别以caff开头的txt文档时,会错误地识别为 audio/x-caf 音频类型
--
This message was sent by Atlassian Jira
(v8.3.4#803005)