Examples-GroupDocs.Metadata-for-Java
// Applies product license
public static void applyLicenseFromFile() {
try {
// Setup license
License lic = new License();
lic.setLicense(licensePath.toString());
} catch (Exception exp) {
System.out.println("Exception: " + exp.getMessage());
exp.printStackTrace();
}
}