Leer almacenamiento Outlook PST

Aspose.Email - Leer Almacenamiento Outlook PST

Un archivo PST de Outlook puede cargarse en una instancia de la PersonalStorage clase.

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

Descargar código en ejecución

Descargar código de muestra