| Author |
convert a db blob of xml into a jdom XML object
|
Christopher Whu
Ranch Hand
Joined: Sep 03, 2008
Posts: 80
|
|
i inherited a database that has full xml documents stored as blobs. The blobs look very similar to:
is there any easy way to convert this blob info into a jdom xml object? thanks in advance!
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
If you can convert it to something which JDOM can read from -- like an InputStream, for example -- then yes. And there is a way to get an InputStream from a PreparedStatement; check out the documentation for that class.
|
 |
Christopher Whu
Ranch Hand
Joined: Sep 03, 2008
Posts: 80
|
|
|
TY sir. This helped alot
|
 |
 |
|
|
subject: convert a db blob of xml into a jdom XML object
|
|
|