View or Update PPTX Metadata Online or Update via Android Apps
Develop powerful android based PPTX document metadata management utility application. Code listed for update PPTX file metadata.
View or Update PPTX Metadata Online
- Import PPTX file by uploading it.
- Do it by clicking inside the drop area via drag and drop of metadata app.
- Depending on the size of PPTX file and internet speed wait for few seconds.
- Same page will display metadata.
- Edit the properties as of your choice.
- Save the document.
- Download the file instantly.
Update PPTX Properties via Android App
- Add android library reference into project
- Load PPTX file using Presentation class
- Get all Properteis via getDocumentProperties()
- To update, use set relevant property method like setAuthor, setSubject
- Save the presentation with the updated metedata information
Code : Update PPTX Metadata
Presentation pres = new Presentation("Presentation.ppt"); | |
try { | |
IDocumentProperties dp = pres.getDocumentProperties(); | |
dp.setAuthor("Aspose.Slides for Java"); | |
dp.setTitle("Modifying Presentation Properties"); | |
dp.setSubject("Aspose Subject"); | |
dp.setComments("Aspose Description"); | |
dp.setManager("Aspose Manager"); | |
pres.save("DocProps.ppt", SaveFormat.Ppt); | |
} finally { | |
if (pres != null) pres.dispose(); | |
} |
Develop PPTX Metadata Management Android App
Need to develop a PPTX Metadata management app or utility? With
Aspose.Slides for Android via Java
a child API of
Aspose.Total for Android via Java
, any android developer can integrate the above API code within its document metadata application. Powerful android library allows programming any document metadata solution. Moreover it can support many popular formats including PPTX format.
Android Utility to Manage PPTX Metadata
- We host our Java packages in Maven repositories .
- Aspose.Slides for Java is a common JAR file containing byte-code.
- Follow the step-by-step instructions on how to install Aspose.Slides for Android via Java.
System Requirements
- J2SE 6.0 (Java 1.6) and higher
- Java package is cross-platform and runs on all operating systems with JVM implementation.
For more details please refer to [Product Documentation](https://docs.aspose.com/slides/java/system-requirements/).