[
https://issues.apache.org/jira/browse/TIKA-3347?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17864450#comment-17864450
]
ASF GitHub Bot commented on TIKA-3347:
--------------------------------------
THausherr commented on PR #1473:
URL: https://github.com/apache/tika/pull/1473#issuecomment-2219468516
It worked for me with small changes because your code isn't runnable:
```
Path input = Paths.get("samplepptx.pptx");
Writer writer = new OutputStreamWriter(System.out);
```
The file is
https://scholar.harvard.edu/files/torman_personal/files/samplepptx.pptx
Maybe you have another commons-io dependency in your pom.xml. Use this:
```
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
</dependency>
```
Use the maven versions plugin to check that you're up-to-date:
```
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>display-plugin-updates</goal>
<goal>display-dependency-updates</goal>
<goal>display-property-updates</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<allowSnapshots>false</allowSnapshots>
</configuration>
</plugin>
```
My output:
Sample PowerPoint File
St. Cloud Technical College
This is a Sample Slide
Here is an outline of bulleted points
You can print out PPT files as handouts using the
PRINT >
PRINT WHAT > HANDOUTS option
image2.jpeg
image1.jpeg
> Upgrade to PDFBox 3.x when available
> ------------------------------------
>
> Key: TIKA-3347
> URL: https://issues.apache.org/jira/browse/TIKA-3347
> Project: Tika
> Issue Type: Task
> Reporter: Tim Allison
> Priority: Major
>
> 3.0.0-RC1 was recently released. We should integrate it on a dev branch asap
> so that we can help with regression testing...
--
This message was sent by Atlassian Jira
(v8.20.10#820010)