Long转Date/页面自定义标签
运行时发现异常:org.apache.jasper.JasperException: javax.el.ELException: java.lang.IllegalArgumentException: Cannot convert ********* of type class java.lang.Long to class java.util.Date
查看页面:
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<fmt:formatDate value="${**.**}" type="date" pattern="yyyy-MM-dd HH:mm:ss"/>
似乎并没有错误,后从这篇文章里得知此方法只能将String类型的转成date型,Long型则不可以,于是参考着做了一下,完美解决!
第一步 写一个类继承TagSupport,实现doStartTag() 方法。
package yanan7890.util; import javax.servlet.jsp.JspException; import javax.servlet.jsp.tagext.TagSupport; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; /**
*
* @Description: 用于jstl java.lang.Long转java.util.Date
* @author yanan
* @date 2017年3月6日 下午2:38:53
*/ public class DateTag extends TagSupport { private static final long serialVersionUID = 6464168398214506236L; private String value; @Override public int doStartTag() throws JspException { String vv = "" + value;//这块还不太理解,出于时间原因暂不深究.稍后研究了源码再更新.同时欢迎大家指导交流拍砖~ try { long time = Long.valueOf(vv.trim()); Calendar c = Calendar.getInstance(); c.setTimeInMillis(time); SimpleDateFormat dateformat = new SimpleDateFormat("yyyy-MM-dd HH:mm"); String s = dateformat.format(c.getTime()); pageContext.getOut().write(s); } catch (Exception e) { e.printStackTrace(); } return super.doStartTag(); } public void setValue(String value) { this.value = value; } }
第二步 编写tld文件,datetag.tld,放在/WEB-INF/tld/目录下:
<?xml version="1.0" encoding= "UTF-8"?> <taglib> <tlib-version>1.0</tlib-version> <jsp-version>1.2</jsp-version> <short-name>date1</short-name> <!--为了便于区分用date1\date2表示,实际运用中像参考文章里那样都用date比较美观--> <tag> <name>date2</name> <tag-class>yanan7890.util.DateTag</tag-class> <body-content>JSP</body-content> <attribute> <name>value</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> </taglib>
第三步 在web.xml中加入引用:
<jsp-config>
<taglib>
<taglib-uri>/tags</taglib-uri>
<taglib-location>/WEB-INF/tld/datetag.tld</taglib-location>
</taglib>
</jsp-config>
第四步 在jsp页面开始使用:
<%@ taglib uri="/tags" prefix="date1"%><date1:date2 value ="${**.**time**} "/>
但是上述方法改动较多.下面推荐个改动较少的方法
<script language="javascript" > var str='${**.**time**}'; Date.prototype.format = function (format) { var o = { "M+": this.getMonth() + 1, "d+": this.getDate(), "h+": this.getHours(), "m+": this.getMinutes(), "s+": this.getSeconds(), "q+": Math.floor((this.getMonth() + 3) / 3), "S": this.getMilliseconds() } if (/(y+)/.test(format)) { format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); } for (var k in o) { if (new RegExp("(" + k + ")").test(format)) { format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)); } } return format; } document.write(new Date(parseInt(str)).format("yyyy-MM-dd hh:mm:ss")); </script>
此方法直接写在相应展示位置即可,省时省力!
本文来自博客园,作者:每天都要学一点,欢迎讨论和转载,转载请注明原文链接:https://www.cnblogs.com/yanan7890/p/6509841.html