262263264265266267268269
* 图文消息对象 * @return xml */ public String newsMessageToXml(ResponseNewsMessage newsMessage) { xstream.alias("xml", newsMessage.getClass()); xstream.alias("item", new Article().getClass()); return xstream.toXML(newsMessage); }
261262263264265266267268