{
PDAnnotationLink link = (PDAnnotationLink)annot;
PDAction action = link.getAction();
if( action instanceof PDActionURI )
{
PDActionURI uri = (PDActionURI)action;
String oldURI = uri.getURI();
String newURI = "http://www.pdfbox.org";
System.out.println( "Page " + pageNum +": Replacing " + oldURI + " with " + newURI );
uri.setURI( newURI );
}
}
}
}
doc.save( args[1] );