Hi, I am using PDFBox to write a utility that will extract the author information from a PDF file. The code that I am using is given below: PDFParser pdfParser = new PDFParser(inputStream); pdfParser.parse(); PDDocument pdDocument = pdfParser.getPDDocument(); PDDocumentInformation pdDocumentInfo = pdDocument.getDocumentInformation(); System.out.println("Author is: "+pdDocumentInfo.getAuthor()); While this does print a value of the author, it is not the same as it ...