# Java kullanarak PPS Dosya Meta Verilerini Görüntüleyin veya Düzenleyin

> PPS biçim meta verilerini düzenlemek veya görüntülemek için Java kaynak kodu.

Source: https://products.aspose.com/slides/tr/java/metadata/pps/
Updated: 2023-04-25



## Java aracılığıyla PPS Özelliklerini değiştirin

Geliştiriciler, Aspose.Slides for Java ürününü kullanarak, özel özelliklerin yanı sıra yerleşik özelliklerin değerlerine erişebilir ve bunları değiştirebilir. Geliştiriciler, sunum dosyasının belge özelliklerine erişmek için Presentation nesnesi tarafından sunulan [DocumentProperties](https://reference.aspose.com/slides/java/com.aspose.slides/documentproperties/) özelliğini kullanabilir.

### PPS Yerleşik Özelliklerini Değiştirin - Java

```java

Presentation pres = new Presentation("Presentation.pps");
try {
    // Create a reference to IDocumentProperties object associated with Presentation
    IDocumentProperties dp = pres.getDocumentProperties();

    // Set the built-in properties
    dp.setAuthor("Aspose.Slides for Java");
    dp.setTitle("Modifying Presentation Properties");
    dp.setSubject("Aspose Subject");
    dp.setComments("Aspose Description");
    dp.setManager("Aspose Manager");

    // Save your presentation to a file
    pres.save("DocProps.pps", SaveFormat.Pps);
} finally {
    if (pres != null) pres.dispose();
}
```

### PPS - Java ürününe Özel Özellikler ekleyin

```java

Presentation pres = new Presentation();
try {
    // Getting Document Properties
    IDocumentProperties dProps = pres.getDocumentProperties();

    // Adding Custom properties
    dProps.set_Item("New Custom", 12);
    dProps.set_Item("My Name", "Aspose Metadata Editor");
    dProps.set_Item("Custom", 124);

    // Getting property name at particular index
    String getPropertyName = dProps.getCustomPropertyName(2);

    // Removing selected property
    dProps.removeCustomProperty(getPropertyName);

    // Saving presentation
    pres.save("CustomDemo.pps", SaveFormat.Pps);
} finally {
    if (pres != null) pres.dispose();
}
```

## Java Aracılığıyla PPS Meta Verilerini Çıkarma

Bunlar, PPS dosyalarından Meta Verileri Çıkarma adımlarıdır.

PPS dosyasının yolu ile Presentation sınıfını örneklendirin

Presentation ile ilişkili DocumentProperties nesnesini alın

DocumentProperties nesnesindeki öğeler üzerinde döngü yapın

Özel özelliklere erişin ve değiştirin

## Diğer Desteklenen Meta Veri Biçimleri
