前端之家收集整理的这篇文章主要介绍了
XStream 去除生成的XML节点的class="XXX",
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public class XMLUtil
{
private static final XStream xStream = new XStream();
// 将对象转为XML字符串
public static <T> String toXML(T obj)
{
Class<?> cls = obj.getClass();
xStream.alias(cls.getSimpleName().toLowerCase(),cls);
xStream.aliasSystemAttribute(null,"class"); // 去掉 class 属性
return xStream.toXML(obj);
}
// 将XML字符串转为对象
@SuppressWarnings({"unchecked"})
public static <T> T fromXML(String xml)
{
return (T) xStream.fromXML(xml);
}
}
原文链接:https://www.f2er.com/xml/299851.html