[ https://issues.apache.org/jira/browse/TIKA-1753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ben McCann updated TIKA-1753:
-----------------------------
Description:
The code below will output text for a pdf. Words that are on different lines are concatenated
together
BodyContentHandler handler = new BodyContentHandler();
byte[] bytes = IOUtils.toByteArray(new FileInputStream(new File("resume.pdf")));
new PDFParser().parse(new ByteArrayInputStream(bytes), handler, new Metadata(), new ParseContext());
System.out.println(handler.toString());
was:
The code below will output text for a pdf. Words that are on different lines are concatenated
together
CaptureXMLHandler handler = new CaptureXMLHandler();
byte[] bytes = IOUtils.toByteArray(new FileInputStream(new File("resume.pdf")));
new PDFParser().parse(new ByteArrayInputStream(bytes), handler, new Metadata(), new ParseContext());
System.out.println(handler.toString());
> Improper word concatenation when extracting pdf
> -----------------------------------------------
>
> Key: TIKA-1753
> URL: https://issues.apache.org/jira/browse/TIKA-1753
> Project: Tika
> Issue Type: Bug
> Components: parser
> Reporter: Ben McCann
> Attachments: sample-resume.pdf
>
>
> The code below will output text for a pdf. Words that are on different lines are concatenated
together
> BodyContentHandler handler = new BodyContentHandler();
> byte[] bytes = IOUtils.toByteArray(new FileInputStream(new File("resume.pdf")));
> new PDFParser().parse(new ByteArrayInputStream(bytes), handler, new Metadata(), new
ParseContext());
> System.out.println(handler.toString());
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
|