Outlook‑opslag PST lezen

Aspose.Email – Outlook‑opslag PST lezen

Een Outlook PST‑bestand kan worden geladen in een instantie van de PersonalStorage klasse.

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

Werkende code downloaden

Voorbeeldcode downloaden