This is my Code....I replaced the String like title.replace("’s", "is") but this can't work fo r me..
NodeList Mymessage = fstElement.getElementsByTagName("title");
Element messageelement = (Element)Mymessage.item(0);
if(messageelement.hasChildNodes())
{
String title = ((Node)messageelement).getFirstChild().getNodeValue();
String title1=title.replace("’s", "is");
bin.setTitle(title1);
Log.v("titlr",title1);
}