jsp时间格式转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp时间格式转换相关的知识,希望对你有一定的参考价值。
我在数据库中存的时间值是 10位数字(php的time()函数寸入的)
比如1227668789->2008-11-26
怎么用jsp或java把这个字符串装换成时间呢
希望大哥们指教
String str=time+"123";//加123只是为了凑足毫秒
Date date=new Date(Long.parseLong(str));
SimpleDateFormat dateFormat = new SimpleDateFormat(type);//type yyyy-MM-dd
// out.println(dateFormat.format(date));//2006-11-23*/
return dateFormat.format(date);//2006-11-23*/
本回答被提问者采纳 参考技术B jsp中要显示php的time()函数存入的时间,需要转换成java date。
注意:time()存入的格式是milliseconds。
举例说明:
String x = "1086073200000";
DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
long milliSeconds= Long.parseLong(x);
System.out.println(milliSeconds);
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(milliSeconds);
//格式化输出日期
System.out.println(formatter.format(calendar.getTime())); 参考技术C 怎么一会儿是jsp一会儿又是php?php我不会,反正java里转换是下面这样子:
Date date = new Date();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault());
jsp 中怎样把日期dd/mm/yyyy 转换成 yyyy-mm-dd 格式
1、在顶部 引入 fmt 标签库 <%@ taglib uri="" prefix="fmt" %>使用: <fmt:formatDate value="17/07/2015" pattern="yyyy-MM-dd" />
fmt标签在js中也可以用的。
2、 或者 使用js 格式化日期 返回到要显示的位置 。js 格式化日期 参考: 参考技术A 如果你是用sturct2框架,你可以使用他们内置的方法:fmt:formatDate,可以实现格式化日期的功能。
以上是关于jsp时间格式转换的主要内容,如果未能解决你的问题,请参考以下文章
jsp 中怎样把日期dd/mm/yyyy 转换成 yyyy-mm-dd 格式