Hi I want to extract table data of PDF file with PDFBOX in JAVA . but removed white spaces more one space when I extract text of PDF .
PDDocument _pd=PDDocument.load("3.pdf");
PDFTextStripper _txt=new PDFTextStripper();
System.out.println(_txt.getText(_pd));
how to bridle to removing white spaces?
thanks,
rashidi

