Outlook-Speicher PST lesen

Aspose.Email – Outlook‑Speicher PST lesen

Eine Outlook‑PST‑Datei kann in eine Instanz der 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());

Laufenden Code herunterladen

Beispielcode herunterladen