try {
pdfDocument = PDDocument.load(is);
if (pdfDocument.isEncrypted()) {
//Just try using the default password and move on
pdfDocument.decrypt("");
}
//create a writer where to append the text content.
StringWriter writer = new StringWriter();
if (stripper == null) {