I have itext library to read a pdf file. While reading the pdf file, it is reading and printing the text but the problem is, it is removing all the white spaces and spaces between lines..
How can i read the file as it is including the text formatting
Below is my code.
PdfReader reader = new PdfReader(INPUTFILE);'
PdfTextExtractor.getTextFromPage(reader, 5) // reader is PdfReader instance and 5 is the page number to read.