Hi every One
Good Day
I make java app that insert PDF file to date base in blob
but now I could not read the file agean
any bady have any Idea to do this I will be thankfull
Best
Salim
|
|
0
|
|
|
|
Reply
|
sahm
|
5/23/2010 11:09:57 AM |
|
sahm schrieb:
> I make java app that insert PDF file to date base in blob
> but now I could not read the file agean
> any bady have any Idea to do this I will be thankfull
You can call getBinaryStream(columnIndex) on the ResultSet object of your
query which gives you an InputStream. The InputStream can than be "feeded"
into the PDF parser you are using.
Robert
|
|
0
|
|
|
|
Reply
|
Robert
|
5/23/2010 3:53:57 PM
|
|
On May 23, 6:53=A0pm, Robert Kochem <rob...@mailueberfall.de> wrote:
> sahm schrieb:
>
> > I make java app that insert PDF file to date base in blob
> > but now I could not read the file agean
> > any bady have any Idea to do this I will be thankfull
>
> You can call getBinaryStream(columnIndex) on the ResultSet object of your
> query which gives you an InputStream. The InputStream can than be "feeded=
"
> into the PDF parser you are using.
>
> Robert
Hi Robert
Thank you for your replay
I tried many pdf library but it did not work very will
do you recommend any PDF library
Thank you agean
Best
Salim
|
|
0
|
|
|
|
Reply
|
sahm
|
5/23/2010 6:13:57 PM
|
|
sahm wrote:
> I tried many pdf library but it did not work very will
> do you recommend any PDF library
http://itextpdf.com/
--
Lew
|
|
0
|
|
|
|
Reply
|
Lew
|
5/23/2010 7:14:07 PM
|
|
On Sun, 23 May 2010 11:13:57 -0700 (PDT), sahm <sahm007@gmail.com>
wrote, quoted or indirectly quoted someone who said :
>I tried many pdf library but it did not work very will
>do you recommend any PDF library
You first problem is to save and fetch the bytes of the PDF file. Make
sure are getting back exactly what you put in. Once you have solved
that, then work on rendering your PDF.
See http://mindprod.com/jgloss/pdf.html
--
Roedy Green Canadian Mind Products
http://mindprod.com
Beauty is our business.
~ Edsger Wybe Dijkstra (born: 1930-05-11 died: 2002-08-06 at age: 72)
Referring to computer science.
|
|
0
|
|
|
|
Reply
|
Roedy
|
5/24/2010 11:25:37 AM
|
|