加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xml与对象的转换

发布时间:2020-12-16 08:30:34 所属栏目:百科 来源:网络整理
导读:1Stringstr=“xmlg格式的标签” 自定义对象AA中封装的属性为xml中的标签 MonitorShowUtil monitorShowUtil=MonitorShowUtil.getInstance(); MonitorShowUtil: public class MonitorShowUtil { private static MonitorShowUtil _self=new MonitorShowUtil();

1Stringstr=“xmlg格式的标签”

自定义对象AA中封装的属性为xml中的标签


MonitorShowUtil monitorShowUtil=MonitorShowUtil.getInstance();


MonitorShowUtil:

public class MonitorShowUtil {
private static MonitorShowUtil _self=new MonitorShowUtil();

private XStream monitorShowXStream = new XStream(new DomDriver("utf-8"));
{

monitorShowXStream.alias("config",MonitorShowPageVO.class);//为MonitorShowPageVO类创建别名config
monitorShowXStream.alias("serviceVO",ServiceVO.class);
monitorShowXStream.alias("gridVO",GridVO.class);

}
public static MonitorShowUtil getInstance() {
return _self;
}
/**
* 转换为XML
* @param obj
* 对象
* @return
*/
public String monitorShowXStreamToXml(Object obj){
return monitorShowXStream.toXML(obj);
}
/**
* 转换为对象
* @param xml
* XML
* @return
*/
public Object monitorShowXStreamFromXml(String xml){
return monitorShowXStream.fromXML(xml);
}
}


Aa=(A)monitorShowUtil.monitorShowXStreamFromXml(str);//把xml文件转为了自定义的对象

??

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读