これは私のコードです....文字列を title.replace("'s", "is") のように置き換えましたが、これはうまくいきません..
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);
}