tomcat日志里面的时间格式化("28/Oct/2019:16:53:46 +0800")
Posted 皓月天边 半步青莲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat日志里面的时间格式化("28/Oct/2019:16:53:46 +0800")相关的知识,希望对你有一定的参考价值。
SimpleDateFormat formatter = new SimpleDateFormat("dd/MMM/yyyy:hh:mm:ss Z", Locale.ENGLISH); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); try {
String date=="24/Jun/2015:09:22:09 +0800";
System.out.println(sdf.format(formatter.parse(date)));
} catch (ParseException e1) {
e1.printStackTrace();
}
以上是关于tomcat日志里面的时间格式化("28/Oct/2019:16:53:46 +0800")的主要内容,如果未能解决你的问题,请参考以下文章
intellij idea spring的错误日志在tomcat localhost log里面去了,日志用的logback;