Baca Penyimpanan Outlook PST

Aspose.Email - Baca Penyimpanan Outlook PST

File Outlook PST dapat dimuat ke dalam sebuah instance dari the PersonalStorage kelas.

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

Unduh Kode yang Berjalan

Unduh Kode Contoh