{
throw new IOException( "Error: The PDF does not contain any bookmarks" );
}
PDOutlineItem item = bookmarks.getFirstChild().getNextSibling();
PDDestination dest = item.getDestination();
PDActionGoTo action = new PDActionGoTo();
action.setDestination(dest);
document.getDocumentCatalog().setOpenAction(action);
document.save( args[1] );
}
finally