# Convert PPS to PPSM using Java

> Convert PPS to PPSM in Java. Use Aspose.Slides for Java to save PPS slide shows as PPSM files.

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



## Convert PPS to PPSM Using Java

Use [Aspose.Slides for Java](/slides/java/) to load a `PPS` slide show and save it as a `PPSM` 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 PPS to PPSM via Java

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

1.  Load the `PPS` file with the `Presentation` class.
1.  Call the `save` method with the output file path and `SaveFormat.Ppsm`.
1.  The `PPSM` 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.

### PPS to PPSM Java Conversion Source Code

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

## Other Supported Conversions

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