to get the string value of a inputstream you can use it to fill a ByteArrayInputStream and get the content from that;

ByteArrayInputStream bais = new ByteArrayInputStream(inputstream);
System.out.println( new String(bais.getBytes()) );

mvh karl �ie

On Friday, Dec 27, 2002, at 07:34 Europe/Oslo, Suhas Indra wrote:

Hello List

I am using PDFBox to index some of the PDF documents. The parser works fine
and I can read the summary. But the contents are displayed as
java.io.InputStream.

When I try the following:
System.out.println(doc.getField("contents")) (where doc is the Document
object)

The result will be:

Text<contents:java.io.InputStreamReader@127dc0>

I want to print the extracted data.

Can anyone please let me know how to extract the contents?

Regards

Suhas



--------------------------------------------------------------
Robosoft Technologies - Partners in Product Development









--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to