java – 如何解析2013-03-13T20:59:31 0000日期字符串到日期
作者:互联网
如何在Date对象中解析此日期字符串2013-03-13T20:59:31 0000?
我尝试过这种方式,但不工作.
DateFormat df = new SimpleDateFormat("YYYY-MM-DDThh:mm:ssTZD");
Date result = df.parse(time);
解决方法:
DateFormat df = new SimpleDateFormat(“yyyy-MM-dd’T’hh:mm:ssZ”);
年份是小写y.
输入中与日期无关的任何字符(如2013-03-13T20:59:31 0000中的’T’应引用”.
有关已定义模式字母的列表,请参阅documentation
解析检查给定日期是否为您指定的格式.
要在检查后以特定格式打印日期,请参阅以下内容:
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ssZ");
Date result;
try {
result = df.parse("2013-03-13T20:59:31+0000");
System.out.println("date:"+result); //prints date in current locale
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
System.out.println(sdf.format(result)); //prints date in the format sdf
}
标签:android,java,parsing,datetime-format 来源: https://codeday.me/bug/20191004/1854441.html