public class ReplaceString
extends java.lang.Object
Constructor and Description |
---|
ReplaceString()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
doIt(java.lang.String inputFile,
java.lang.String outputFile,
java.lang.String strToFind,
java.lang.String message)
Locate a string in a PDF and replace it with a new string.
|
static void |
main(java.lang.String[] args)
This will open a PDF and replace a string if it finds it.
|
public void doIt(java.lang.String inputFile, java.lang.String outputFile, java.lang.String strToFind, java.lang.String message) throws java.io.IOException, COSVisitorException
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.java.io.IOException
- If there is an error writing the data.COSVisitorException
- If there is an error writing the PDF.public static void main(java.lang.String[] args)
args
- Command line arguments.