擴充功能,可以寫個工具類,然後把工具類放到context中,在模板中可以直接呼叫工具類的方法
預設情況下,日期輸出的Tue
Jul 14 16:42:30 CST 2015
我們需要寫個工具類,對日期進行格式化,
把原日期和日期格式化工具類都放入到context中
在模板中,調用日期格式化工具類的方法,對日期進行格式化
$dateformat.format("yyyy-MM-dd",$date) //2 Create a Context object VelocityContext context = newVelocityContext(); //3 Add you data object to this context context.put("date", new Date()); //扩展功能,提供一个日期格式工具类,在模板中调用其方法即可。 context.put("dateformat", newDateUtils()); //4 Choose a template Template template =Velocity.getTemplate("formatedate.vm"); //5 Merge the template and you data toproduce the output StringWriter sw = new StringWriter(); template.merge(context, sw); sw.flush(); System.out.println(sw.toString()); formatedate.vm ${date} === $date === $dateformat.format("yyyy-MM-dd",$date) -== $dateformat.format("yyyy-MM-ddHH:mm:ss",$date) == $dateformat.format("yyyyMMdd",$date)
以上就是velocity第9個應用範例---格式化日期的內容,更多相關內容請關注PHP中文網(www.php.cn)!