这是我的代码..我替换了类似 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);
}