I am gettring the lot of data from a webservice containing xml entity references. While replacing those with the respective characters I am getting an out of memory error. Can anybody give example how to avoid that? I am stuck for two days on this problem.
This is my code:
public String decodeXMLData(String s)
{
s = s.replaceAll(">",">");
System.out.println("string value is"+s);
s = s.replaceAll("<", "<");
System.out.println("string value1 is"+s);
s=s.replaceAll("&", "&");
s=s.replaceAll(""", "\"");
s=s.replaceAll("'", "'");
s=s.replaceAll(" ", " ");
return s;
}
