Outlook 스토리지 PST 읽기

Aspose.Email - Outlook 저장소 PST 읽기

Outlook PST 파일을 해당 클래스의 인스턴스로 로드할 수 있습니다. PersonalStorage 클래스.

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

실행 코드 다운로드

샘플 코드 다운로드