# Convert ODP to PPS using Java

> Convert ODP to PPS in Java. Use Aspose.Slides for Java to save ODP presentations as PPS slide shows.

Source: https://products.aspose.com/slides/java/conversion/odp-to-pps/
Updated: 2026-08-11



## Convert ODP to PPS Using Java

 To convert `ODP` to `PPS`, use
 [Aspose.Slides for Java](/slides/java/).
 It is a PowerPoint and OpenDocument presentation API that lets you load an `ODP` file and save it as a `PPS` slide show. You can get the latest `aspose-slides` package from
 [Maven](https://releases.aspose.com/java/repo/)
 and add it to your Maven-based project with the following configuration in `pom.xml`.

### Repository

```xml
<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>
```

### Dependency

```xml
<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>
```

## How to Convert ODP to PPS via Java

 Java developers can convert an `ODP` file to `PPS` in just a few lines of code.

1.  Load the `ODP` file with the `Presentation` class.
1.  Call the `Presentation.save` method with the output file path and `SaveFormat.Pps`.
1.  The `PPS` file will be saved at the specified path.

## System Requirements

 Before running the Java conversion sample code, make sure that you have the following prerequisites.

- A supported operating system with a Java Runtime Environment installed.
- Get the latest version of Aspose.Slides for Java from the Aspose Maven repository.

### ODP to PPS Java Conversion Source Code

```java
Presentation presentation = new Presentation("template.odp");
try {
    presentation.save("output.pps", SaveFormat.Pps);
} finally {
    presentation.dispose();
}
```

## Other Supported Conversions

- [ODP TO BMP](/slides/java/conversion/odp-to-bmp/) — Bitmap Image
- [ODP TO GIF](/slides/java/conversion/odp-to-gif/) — Graphics Interchange Format
- [ODP TO HTML](/slides/java/conversion/odp-to-html/) — Hypertext Markup Language
- [ODP TO JPEG](/slides/java/conversion/odp-to-jpeg/) — JPEG Image
- [ODP TO OTP](/slides/java/conversion/odp-to-otp/) — OpenDocument Presentation Template
- [ODP TO PDF](/slides/java/conversion/odp-to-pdf/) — Portable Document Format
- [ODP TO PNG](/slides/java/conversion/odp-to-png/) — Portable Network Graphics
- [ODP TO POT](/slides/java/conversion/odp-to-pot/) — PowerPoint 97–2003 Template
- [ODP TO POTM](/slides/java/conversion/odp-to-potm/) — PowerPoint Macro-Enabled Template
- [ODP TO POTX](/slides/java/conversion/odp-to-potx/) — PowerPoint Template
- [ODP TO PPSM](/slides/java/conversion/odp-to-ppsm/) — Macro-enabled Slide Show
- [ODP TO PPSX](/slides/java/conversion/odp-to-ppsx/) — PowerPoint Slide Show
- [ODP TO PPT](/slides/java/conversion/odp-to-ppt/) — PowerPoint 97-2003 Presentation
- [ODP TO PPTM](/slides/java/conversion/odp-to-pptm/) — Macro-enabled Presentation File
- [ODP TO PPTX](/slides/java/conversion/odp-to-pptx/) — Open XML Presentation Format
- [ODP TO SVG](/slides/java/conversion/odp-to-svg/) — Scalable Vector Graphics
- [ODP TO SWF](/slides/java/conversion/odp-to-swf/) — SWF Format
- [ODP TO TIFF](/slides/java/conversion/odp-to-tiff/) — Tagged Image File Format
- [ODP TO XPS](/slides/java/conversion/odp-to-xps/) — XML Paper Specification
