刚接触Java,听说可以在后台取值的时候直接给格式化了,具体应该怎么操作。
7 个解决方案
#1
JSP有fmt标签,去查查这个的帮助
#2
通过数据库获取到时间之后用java转换一下就好了,为什么要在前段转换呢
#3
后台: new SimpleDateFormat("yyyy-M
M-dd").format(String date);
或者在前台jsp展示的时候,可以用JSTL的fmt标签库:
<fmt:formatDate value="${....}" pattern="yyyy-MM-dd" />
手机打的,也不知道写错了单词没有
M-dd").format(String date);
或者在前台jsp展示的时候,可以用JSTL的fmt标签库:
<fmt:formatDate value="${....}" pattern="yyyy-MM-dd" />
手机打的,也不知道写错了单词没有
#4
能不能说下详细的方法。
我测试的fmt标签,都提示内部错误。
比如将
时间戳1436410571 转换成 yy-mm--dd
#5
<script type="text/javascript">
function getLocalTime(nS) {
return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');
}
document.write(getLocalTime(${user.time}));
</script>
这是JS格式,可以获取到我想要的东西,但写页面里面总感觉不太适合。
function getLocalTime(nS) {
return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');
}
document.write(getLocalTime(${user.time}));
</script>
这是JS格式,可以获取到我想要的东西,但写页面里面总感觉不太适合。
#1
JSP有fmt标签,去查查这个的帮助
#2
通过数据库获取到时间之后用java转换一下就好了,为什么要在前段转换呢
#3
后台: new SimpleDateFormat("yyyy-M
M-dd").format(String date);
或者在前台jsp展示的时候,可以用JSTL的fmt标签库:
<fmt:formatDate value="${....}" pattern="yyyy-MM-dd" />
手机打的,也不知道写错了单词没有
M-dd").format(String date);
或者在前台jsp展示的时候,可以用JSTL的fmt标签库:
<fmt:formatDate value="${....}" pattern="yyyy-MM-dd" />
手机打的,也不知道写错了单词没有
#4
能不能说下详细的方法。
我测试的fmt标签,都提示内部错误。
比如将
时间戳1436410571 转换成 yy-mm--dd
#5
<script type="text/javascript">
function getLocalTime(nS) {
return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');
}
document.write(getLocalTime(${user.time}));
</script>
这是JS格式,可以获取到我想要的东西,但写页面里面总感觉不太适合。
function getLocalTime(nS) {
return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');
}
document.write(getLocalTime(${user.time}));
</script>
这是JS格式,可以获取到我想要的东西,但写页面里面总感觉不太适合。