GroupDocs.Parser for Java 20.12 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
PARSERNET-1690Implement the ability to identify whether a file is password-protectedNew Feature

Public API and Backward Incompatible Changes

Description

This feature allows to identify whether a file is password-protected.

Public API changes

The following types were added:

  • Added FileInfo class into com.groupdocs.parser.options package.

Parser public class was updated with changes as follows:

Usage

The following code shows how to check whether a file is password-protected:

// Get a file info
FileInfo info = Parser.getFileInfo(filePath);
// Check IsEncrypted property
System.out.println(info.isEncrypted() ? "Password is required" : "");