Package org.apache.padaf.preflight

Examples of org.apache.padaf.preflight.PdfAValidator.validate()


   
    int size = lfd.size();
    for (int i = 0 ; i < loop ; i++) {
      File file = lfd.get(i%size);
      long startLTime = System.currentTimeMillis();
      ValidationResult result = validator.validate(new FileDataSource(file));
      if (!result.isValid()) {
        resFile.write(file.getAbsolutePath() + " isn't PDF/A\n");
        for (ValidationError error : result.getErrorsList()) {
          resFile.write(error.getErrorCode() + " : " + error.getDetails() +"\n");
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.