Hi,
I am using JDOM to get the values from the XML.
My xml has a tag with value as:
<map>PIM ©</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
I am using JDOM to get the values from the XML.
My xml has a tag with value as:
<map>PIM ©</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