Outlook Depolama PST'yi Oku

Aspose.Email - Outlook Depolama PST’yi Oku

Outlook PST dosyası bir örnek içine yüklenebilir PersonalStorage sınıf.

Java


 // Load the Outlook PST file

String pstFileName = dataDir + "archive.pst";

PersonalStorage pst = PersonalStorage.fromFile(pstFileName);

// Get the Display Name of the PST file

System.out.println("Display Name: " + pst.getDisplayName());

Çalışan Kodu İndir

Örnek Kodu İndir