程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp頁面中如何將時間戳字符串格式化為時間標簽

jsp頁面中如何將時間戳字符串格式化為時間標簽

編輯:關於JSP

datetag.tld文件:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
<taglib>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>date</short-name>
<uri>http://com.demo.util.datejstl/tags</uri>
<tag>
<name>date</name>
<tag-class>com.demo.util.jstl.JSTLUtil</tag-class>
<attribute>
<name>value</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>parttern</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>

在Jsp頁面中引用:

<%@ taglib uri="http://com.demo.util.datejstl/tags" prefix="date"%>

在Jsp頁面中用法:

<date:date value="${time}" parttern="yyyy-MM-dd HH:mm:ss"></date:date></div>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved