You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tika.apache.org by "Assaf Urieli (JIRA)" <ji...@apache.org> on 2015/09/09 15:59:45 UTC

[jira] [Updated] (TIKA-1732) TikaException "Failed to close temporary resources" with AutoDetectParser on Windows

     [ https://issues.apache.org/jira/browse/TIKA-1732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Assaf Urieli updated TIKA-1732:
-------------------------------
    Attachment: test.docx

File referred to in code, producing the error.

> TikaException "Failed to close temporary resources" with AutoDetectParser on Windows
> ------------------------------------------------------------------------------------
>
>                 Key: TIKA-1732
>                 URL: https://issues.apache.org/jira/browse/TIKA-1732
>             Project: Tika
>          Issue Type: Bug
>          Components: core
>    Affects Versions: 1.10
>         Environment: Windows 8.1 Pro, Java 1.8.0_45
>            Reporter: Assaf Urieli
>         Attachments: test.docx
>
>
> When running the very basic example on https://tika.apache.org/1.7/examples.html
> The following exception is thrown:
> Exception in thread "main" org.apache.tika.exception.TikaException: Failed to close temporary resources
> 	at org.apache.tika.io.TemporaryResources.dispose(TemporaryResources.java:152)
> 	at org.apache.tika.parser.AutoDetectParser.parse(AutoDetectParser.java:127)
> 	at org.apache.tika.parser.AutoDetectParser.parse(AutoDetectParser.java:136)
> 	at com.joliciel.test.tika.TikaStructureTest.main(TikaStructureTest.java:17)
> Caused by: java.io.IOException: Could not delete temporary file C:\Users\Assaf\AppData\Local\Temp\apache-tika-1485913318469340881.tmp
> 	at org.apache.tika.io.TemporaryResources$1.close(TemporaryResources.java:70)
> 	at org.apache.tika.io.TemporaryResources.close(TemporaryResources.java:121)
> 	at org.apache.tika.io.TemporaryResources.dispose(TemporaryResources.java:150)
> 	... 3 more
> The code is:
> import java.io.InputStream;
> import org.apache.tika.metadata.Metadata;
> import org.apache.tika.parser.AutoDetectParser;
> import org.apache.tika.sax.BodyContentHandler;
> public class TikaTest {
> 	public static void main(String[] args) throws Exception {
> 	    InputStream stream = TikaTest.class.getResourceAsStream("test.docx");
> 	    BodyContentHandler handler = new BodyContentHandler();
> 	    AutoDetectParser parser = new AutoDetectParser();
> 	    Metadata metadata = new Metadata();
> 	    try {
> 	        parser.parse(stream, handler, metadata);
> 	        System.out.println(handler.toString());
> 	    } finally {
> 	        stream.close();
> 	    }
> 	}
> }
> The file analysed is a Microsoft Word 2013 DOCX.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)