xml日期2016-01-07T11:33:58.000+08:00和正常日期互转

前端之家收集整理的这篇文章主要介绍了xml日期2016-01-07T11:33:58.000+08:00和正常日期互转前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

正常日期转xml日期

GregorianCalendar gcal =new GregorianCalendar();

Date date=new Date(baoJiaTime);
gcal.setTime(date);

String baoJiaTimeStr= DatatypeFactory.newInstance().newXMLGregorianCalendar(gcal).toString();


xml日期转时间

用date实体接受。自动转换。

原文链接:https://www.f2er.com/xml/294569.html

猜你在找的XML相关文章