Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need Help in getting value from XML using JDOM

Status
Not open for further replies.

dparikh72

Programmer
Oct 14, 2005
5
US
Hi,

I am using JDOM to get the values from the XML.

My xml has a tag with value as:

<map>PIM &#169;</map>

I use,

IConfigElement mapElement = lookupElement("map");
String map = mapElement.getValue();

The value is get is ' PIM © ', i dont want this value.

My requirement is to get the original String not the ascii value.

Any idea how to get it.

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top