• 如何分割XML? 我正在使用这一法典。
public static String insertNewMsg(String aMsg, String newMsgXML)
{
String retXML = null;
//int size = aMsg.s
String[] strParts = aMsg.Split("</messages>");
if (strParts.Length >= 0)
{
retXML = strParts[0] + newMsgXML + "</messages>";
}
return retXML;
}
我想在末端(即“?messages”)到达时就座。