Hi Guys
I have a
String object containing xml content which I get from a 'Database Column'.I would like to use that xml content in the String as a InputStream or FileInputStream or XMLInputStream to be used by my 'JAX-B Classes'.
String a = "<parentTag>abc</ParentTag>";
Can I convert the above String to an inputStream or other formats??
Is there a way I can accomplish this ?..
Thanks in Advance
Ravi