Skip to content

Instantly share code, notes, and snippets.

@ivarprudnikov
Created April 11, 2016 09:43
Show Gist options
  • Save ivarprudnikov/6b76b56aa4ac9f5ae22c50adf108a7fd to your computer and use it in GitHub Desktop.
Save ivarprudnikov/6b76b56aa4ac9f5ae22c50adf108a7fd to your computer and use it in GitHub Desktop.
Check if PDF loads into PDDocument without IOException
@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