Outlook‑opslag PST lezen
Contents
[
Hide
]
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
Voor meer details, bezoek Outlook PST‑bestand lezen en map‑ en submapinformatie ophalen.