# Convert PPTX to PPS using Java

> Convert PPTX to PPS in Java. Use Aspose.Slides for Java to save PPTX presentations as PPS files.

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



## Convert PPTX to PPS Using Java

Use [Aspose.Slides for Java](/slides/java/) to load a `PPTX` presentation and save it as a `PPS` file. You can install the `aspose-slides` package in a Maven-based project by adding the repository and dependency below.

### 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 PPTX to PPS via Java

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

1.  Load the `PPTX` file with the `Presentation` class.
1.  Call the `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.

- Microsoft Windows, Linux, macOS, or another OS with a supported Java Runtime Environment.
- Get the latest version of Aspose.Slides for Java from Maven.

### PPTX to PPS Java Conversion Source Code

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

## Other Supported Conversions

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