Read Outlook Storage PST
Contents
[ Hide ] Aspose.Email - Read Outlook Storage PST
An Outlook PST file can be loaded into an instance of the 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()); Download Running Code
Download Sample Code
For more details, visit Read Outlook PST File and Get Folders and Subfolders Information.