Читання сховища Outlook PST

Aspose.Email — Читання сховища Outlook PST

Файл Outlook PST можна завантажити в екземпляр PersonalStorage клас.

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());

Завантажити працюючий код

Завантажити зразковий код