Java, XML and images
843834Oct 31 2001 — edited Nov 24 2001Can somebody tell me how to import XML document which contain a picture's URL.
Example :
My XML document looks like following
<Member>
<name> Dupond Durant</names>
<address> 30 rue de Londres Paris France</address>
<imageUrl>http ://remoteServer/images/dupond.gif</imageUrl>
</Member>
I would like to import this XML document (text data) in a database document, and store the image shown in the <imageUrl> tag (dupond.gif ) as a file on a disk .
Thanks.