Прочитайте PST в хранилище Outlook

Aspose.Email - чтение PST в хранилище Outlook

Файл Outlook PST можно загрузить в экземпляр PersonalStorage class.

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


Загрузить рабочий код

Загрузить образец кода