Created
April 11, 2016 09:43
-
-
Save ivarprudnikov/6b76b56aa4ac9f5ae22c50adf108a7fd to your computer and use it in GitHub Desktop.
Check if PDF loads into PDDocument without IOException
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Grab(group='org.apache.pdfbox', module='pdfbox', version='2.0.0') | |
import org.apache.pdfbox.pdmodel.PDDocument | |
["url"].each { String url -> | |
boolean fails = false | |
try{ | |
new URL("$url").withInputStream { | |
PDDocument.load(it) | |
} | |
} catch(IOException e){ | |
fails = true | |
} | |
if(fails){ | |
println "FAILS $url" | |
} else { | |
println "SUCCEEDS $url" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment