在写Web程序中,往往要处理大量的时间日期显示的工作,一个灵活的格式化输出日期的工具必不可少。之前在网上找了好一会儿,没找到满意的,苦恼不已。索性,自己写个算了。
在这里跟大家共享。
这个是1.13的有错误的代码:
package cn.lhx.taglib.toolkit;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Pattern;
public class TimeFunction {
private final static String wtb_en[] = { "am", "pm", "monday", "tuesday",
"wednesday", "thursday", "friday", "saturday", "sunday", "january",
"february", "march", "april", "may", "june", "july", "august",
"september", "october", "november", "december", "gmt", "ut", "utc",
"est", "edt", "cst", "cdt", "mst", "mdt", "pst", "pdt" };
private final static String wtb_cn[] = { "上午", "下午", "星期一", "星期二", "星期三",
"星期四", "星期五", "星期六", "星期天", "一月", "二月", "三月", "四月", "五月", "六月",
"七月", "八月", "九月", "十月", "十一月", "十二月", "gmt", "ut", "utc", "est",
"edt", "cst", "cdt", "mst", "mdt", "pst", "pdt" };
//profile缓存
private final static Map<Date, Map<String, String>> proBuf=new HashMap<Date, Map<String,String>>(10);
private final static Map<String,String> init(Date date){
Map<String,String> profile =(HashMap<String, String>)proBuf.get(date);
//查找缓存,有解析过的就直接返回
if(profile!=null)return profile;
date.toString();
//new 一个Map
profile=new HashMap<String, String>();
//解析日期
Calendar calendar=Calendar.getInstance();
calendar.setTime(date);
int year=calendar.get(Calendar.YEAR);
int month=calendar.get(Calendar.MONTH);//月重0开始
int day=calendar.get(Calendar.DAY_OF_MONTH);
int weekDay=calendar.get(Calendar.DAY_OF_WEEK);
weekDay=(weekDay==Calendar.SUNDAY)? 7:(weekDay-1);
int hour=calendar.get(Calendar.HOUR_OF_DAY);
int minute=calendar.get(Calendar.MINUTE);
int am_pm=calendar.get(Calendar.AM_PM);//0 AM 1 PM
//年
profile.put("%Yc", year+"年");
profile.put("%Ye", year+"");
profile.put("%Y", year+"");
//月
profile.put("%Mc", wtb_cn[month+9]);
profile.put("%Me", wtb_en[month+9]);
profile.put("%M", (month+1)+"");
//日
profile.put("%D",day+"");
String dayDix="th";
//day调整1st、2nd、3rd
dayDix=(day%10==1?"st":(day%10==2?"nd":(day%10==3?"rd":dayDix)));
profile.put("%De",day+dayDix);
profile.put("%Dc",day+"日");
//星期
profile.put("%W",weekDay+"");
profile.put("%We",wtb_en[weekDay+1]);
profile.put("%Wc",wtb_cn[weekDay+1]);
//时间
int hour12=hour>12?hour-12:hour;//转换成12小时格式
profile.put("%T12",(hour12)+":"+minute);
profile.put("%T24",hour+":"+minute);
//上下午
profile.put("%N",wtb_en[am_pm]);
profile.put("%Ne",wtb_en[am_pm]);
profile.put("%Nc",wtb_cn[am_pm]);
//放入缓存
proBuf.put(date, profile);
return profile;
}
/**
* 将日期转换成格式化字符串
* @param str 带有给事标识符的字符串
* @param date 日期对象
* @return
* %Y[?]:年<br/>
* %M[?]:月<br/>
* %D[?]:日<br/>
* %T[12|24]:时间,12表示十二小时制,24表示...
* <br/>详细参数列表
* <table border=1px>
* <tr><td>格式符</td><td>形式,示例</td><td>格式符</td><td>形式,示例</td></tr>
* <tr><td>%Y</td><td>数字,2010</td><td>%D</td><td>日,数字</td></tr>
* <tr><td>%Yc</td><td>数字+年,2010年</td><td>%Dc</td><td>数字+日,23日</td></tr>
* <tr><td>%Ye</td><td>数字,2009</td><td>%De</td><td>数字+th,23th</td></tr>
* <tr><td>%M</td><td>数字,12</td><td>%W</td><td>星期,数字,7</td></tr>
* <tr><td>%Mc</td><td>中文+月,十二月</td><td>%We</td><td>英文,sunday</td></tr>
* <tr><td>%Me</td><td>英文,dec</td><td>%Wc</td><td>中文,星期天</td></tr>
* <tr><td>%N</td><td>英文,am</td><td>%Ne</td><td>中文,星期天</td></tr>
* <tr><td>%Nc</td><td>中文,上午</td><td>%T[12|24]</td><td>数字,12:30</td></tr>
* </table>
* Example:<br/>
* str="今天是%Yc,%Mc,%Dc,%Wc"<br/>
* 输出:今天是2010年,一月,13日,星期三<br/>
* str=""今天是%Yc,%Me,%De,%We""<br/>
* 输出:今天是2010年,january,13rd,wednesday<br/>
*/
public static String getFormateTimeStr(String str,Date date){
//获得参数
Map<String, String> profile=init(date);
//正则解析
java.util.regex.Pattern pattern=Pattern.compile("\\%[M,D,Y,T,N,W]([ce~]|[124]{0,2})");
java.util.regex.Matcher matcher=pattern.matcher(str);
boolean isFind=matcher.find();
StringBuffer sb=new StringBuffer();
while (isFind) {
String findStr=matcher.group();
// System.out.println("findStr =="+findStr);
// System.out.println("group1== "+matcher.group(1));
// System.out.println("StartIndex== "+matcher.start());
// System.out.println("EndIndex== "+matcher.end());
if(profile.get(findStr)!=null){
//如果找到了就用profile里格式化串替换标记
matcher.appendReplacement(sb, profile.get(findStr));
}
isFind=matcher.find();
}
matcher.appendTail(sb);
return sb.toString();
}
//测试
public static void main(String[] args) {
Date date=new Date();
System.out.println(TimeFunction.getFormateTimeStr("今天是%Yc,%Mc,%Dc,%Wc", date));
System.out.println(TimeFunction.getFormateTimeStr("今天是%Yc,%Me,%De,%We", date));
}
}
使用到了java正则表达式库,和HashMap,其他的看代码应该不用过多解释了。
去掉代码中的一些system.out,可以观察解析过程。
1.14:修正了缓存的错误实现,以下是更新后的TimeFunction中的init方法,和静态量,对照旧版本,你会发现旧版本存在严重问题
//缓存容量
private final static int maxCapacity = 10;
//profile缓存
private final static Map<Date, Map<String, String>> proBuf = new HashMap<Date, Map<String, String>>(maxCapacity);
private final static Map<String, String> init(Date date) {
//查找缓存
Date lastDate = date;
for (Iterator it = proBuf.keySet().iterator(); it.hasNext();) {
lastDate = (Date) it.next();
if (lastDate.equals(date)) {
return proBuf.get(lastDate);
}
}
//缓存中没有找到,new 一个Map
Map<String, String> profile = new HashMap<String, String>();
//解析日期
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
int year = calendar.get(Calendar.YEAR);
int month = calendar.get(Calendar.MONTH);//月重0开始
int day = calendar.get(Calendar.DAY_OF_MONTH);
int weekDay = calendar.get(Calendar.DAY_OF_WEEK);
weekDay = (weekDay == Calendar.SUNDAY) ? 7 : (weekDay - 1);
int hour = calendar.get(Calendar.HOUR_OF_DAY);
int minute = calendar.get(Calendar.MINUTE);
int am_pm = calendar.get(Calendar.AM_PM);//0 AM 1 PM
//年
profile.put("%Yc", year + "年");
profile.put("%Ye", year + "");
profile.put("%Y", year + "");
//月
profile.put("%Mc", wtb_cn[month + 9]);
profile.put("%Me", wtb_en[month + 9]);
profile.put("%M", (month + 1) + "");
//日
profile.put("%D", day + "");
String dayDix = "th";
//day调整1st、2nd、3rd
dayDix = (day % 10 == 1 ? "st" : (day % 10 == 2 ? "nd" : (day % 10 == 3 ? "rd" : dayDix)));
profile.put("%De", day + dayDix);
profile.put("%Dc", day + "日");
//星期
profile.put("%W", weekDay + "");
profile.put("%We", wtb_en[weekDay + 1]);
profile.put("%Wc", wtb_cn[weekDay + 1]);
//时间
int hour12 = hour > 12 ? hour - 12 : hour;//转换成12小时格式
profile.put("%T12", (hour12) + ":" + minute);
profile.put("%T24", hour + ":" + minute);
//上下午
profile.put("%N", wtb_en[am_pm]);
profile.put("%Ne", wtb_en[am_pm]);
profile.put("%Nc", wtb_cn[am_pm]);
if (proBuf.size() < maxCapacity) {
//放入缓存
proBuf.put(date, profile);
} else {
//移除最旧的日期profile
proBuf.remove(lastDate);
proBuf.put(date, profile);
}
// System.out.println("proBuf.size= "+proBuf.size());
return profile;
}
标签定义文件:timefunction.tld
<?xml version="1.0" encoding="UTF-8"?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description>MyTag 1.0</description>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>tmf</short-name>
<uri>/timefunction</uri>
<function>
<description>
</description>
<name>getFormateTimeStr</name>
<function-class>cn.lhx.taglib.toolkit.TimeFunction</function-class>
<function-signature>java.lang.String getFormateTimeStr(java.lang.String,java.util.Date)</function-signature>
<example>
</example>
</function>
</taglib>
标签的使用:
1.在web.xml中加入:
<taglib>
<taglib-uri>/timefunction</taglib-uri>
<taglib-location>/WEB-INF/timefunction.tld</taglib-location>
</taglib>
2.在jsp页面中加入:
<%@ taglib uri="/timefunction" prefix="tmf"%>
3.在想要格式转换的地方加入自己的字符串,实例:
<div class="postDate">
${tmf:getFormateTimeStr(
'<p> %Mc </p>
<p class=day>%D</p>
<p> %Y</p>'
,article.postTime) }
</div>
OK,不出意外的话,你应该看到结果了
- 大小: 1.5 KB
分享到:
相关推荐
SVN的核心理念是将所有文件存储在一个中央仓库,团队成员可以从仓库中检出(Checkout)、提交(Commit)、更新(Update)和比较(Compare)代码。 2. **TortoiseSVN特性** - **图形化界面**:TortoiseSVN提供了一...
1.14.0.28885-win32-svn-1.14.0是TortoiseSVN的一个版本,适用于32位的Windows操作系统,并且已经包含了官方中文语言包,便于中国用户使用。 首先,TortoiseSVN的核心功能包括: 1. 版本控制:TortoiseSVN能够跟踪...
总结来说,"jts_1.14.zip"是一个包含JTS 1.14版本的软件包,它提供了强大的空间数据处理和分析能力,对于GIS开发人员而言,它是不可或缺的工具。通过与GeoTools等其他库的结合,可以构建出功能丰富的地理信息系统...
标题 "Havij1.14 SQL注入工具 asp php jsp mssql mysql" 提到的是一个名为Havij 1.14的工具,它主要用于检测和利用SQL注入漏洞。SQL注入是一种常见的网络安全问题,攻击者通过在输入字段中插入恶意SQL代码,以获取、...
版本1.14是在TensorFlow发展历程中的一个重要里程碑,提供了稳定性和性能的优化。离线安装包则为那些无法或不便连接到互联网的用户提供了一种方便的安装方式。本文将详细介绍如何使用TensorFlow 1.14的离线安装包...
Go语言1.14版本是其发展历程中的一个重要里程碑,这个版本包含了多项重要的改进和优化,旨在提升开发效率和程序性能。以下将详细探讨Go 1.14中的关键更新和特性。 1. **编译器优化** Go 1.14对编译器进行了大量...
5. 更新显示屏:在发送完数据后,可能需要发送一个更新命令来刷新屏幕。 在项目压缩包中,"05-1.14IPS显示屏STM32F407ZG_SPI例程"很可能是包含整个示例代码的文件,这将涵盖上述所有步骤的实现细节。开发者可以通过...
小乌龟SVN1.14.3.29387 安装包加中文语言包
适合64位系统的TortoiseSVN对应的中文简体语言包:TortoiseSVN-1.14.3.29387-x64-svn-1.14.2.msi
总的来说,lcov-1.14是Linux开发环境中一个强大的代码覆盖率分析工具,它为开发者提供了对代码测试质量的深刻洞察,有助于提升软件的可靠性和维护性。通过深入理解和使用lcov,开发者可以更好地管理他们的测试过程,...
TortoiseSVN是基于Subversion(SVN)版本控制系统的一款图形化客户端工具,专为Windows用户设计。这款1.14.1.29085-x64的版本适用于64位操作系统,提供了全面的代码管理和协作功能。TortoiseSVN不仅是一款免费的开源...
TortoiseSVN是一款在Windows操作系统上广泛使用的版本控制系统客户端,它基于Subversion(SVN)服务器,提供了图形化的用户界面,使得用户可以方便地进行版本控制操作。TortoiseSVN-1.14.0.28885-x64-svn-1.14.0官方...
《TortoiseSVN-1.14.5.29465-x64-svn-1.14.2.rar:一个强大的版本控制系统工具》 TortoiseSVN,这个名字可能对许多开发者而言并不陌生,它是一个高度集成在Windows资源管理器中的Subversion(SVN)客户端。这个名为...
TortoiseSVN,一个深受开发者喜爱的版本控制系统客户端,是Subversion(SVN)在Windows平台上的图形化界面。版本号为1.14.0.28885的x64位版本,代表着该软件在稳定性和功能上达到了新的高度。本文将深入解析...
1.14.5.29465是TortoiseSVN的一个特定版本,它可能包含了性能优化、错误修复以及新的功能特性。 TortoiseSVN的核心功能包括: 1. **版本追踪**:TortoiseSVN能够跟踪文件和目录的历史变更,用户可以查看历史版本,...
SnakeYAML是一个开源库,主要用于解析和生成YAML格式的数据。在Java开发中,YAML是一种常见的配置文件格式,因为它具有良好的可读性和简洁性。SnakeYAML 1.14是该库的一个版本,提供了对YAML 1.1规范的支持。 YAML...
libiconv是一个广泛使用的字符编码转换库,其1.14版本在处理跨平台和多语言环境下的字符集转换时扮演了关键角色。这个开源项目,由GNU项目开发并维护,旨在为程序员提供一个统一的接口,来解决不同字符集之间的转换...
TortoiseSVN是一个图形化界面的SVN客户端工具,它的图标集成在Windows资源管理器中,用户可以通过右键菜单直接进行版本控制操作,如提交、更新、比较、合并等。它简化了SVN的操作流程,使得非技术背景的用户也能轻松...
TensorFlow-r1.14是该库的一个特定版本,发布于2019年,虽然现在已经有了更先进的版本,但r1.14在很多教程和项目中仍被广泛使用,对于初学者来说是很好的入门选择。 在"tensorflow-r1.14.zip"这个压缩包中,你可以...