org.pdfbox.examples.pdmodel
Class ReplaceString
java.lang.Object
org.pdfbox.examples.pdmodel.ReplaceString
public class ReplaceString
extends java.lang.Object
This is an example that will replace a string in a PDF with a new one.
The example is taken from the pdf file format specification.
void | doIt(String inputFile, String outputFile, String strToFind, String message) - Locate a string in a PDF and replace it with a new string.
|
static void | main(String[] args) - This will open a PDF and replace a string if it finds it.
|
ReplaceString
public ReplaceString()
Constructor.
doIt
public void doIt(String inputFile,
String outputFile,
String strToFind,
String message)
throws IOException,
COSVisitorException
Locate a string in a PDF and replace it with a new string.
inputFile
- The PDF to open.outputFile
- The PDF to write to.strToFind
- The string to find in the PDF document.message
- The message to write in the file.
main
public static void main(String[] args)
This will open a PDF and replace a string if it finds it.
see usage() for commandline
args
- Command line arguments.