我有一个csv文件,我想用fmpp(freemarker)进行转换。第一列是一个长值(自1970年1月1日以来的毫秒),我想将其转换为日期并将其格式化为datetime。
src格式:
timeStamp,elapsed,label,responseCode,threadName,dataType,success,bytes,URL,Latency
1319115474244,40142,Login,200,Login 1-2,text,true,862184,http://localhost:8080/xxx,5378
理想的目标格式:
timeStamp;elapsed;label;responseCode;threadName;dataType;success;bytes;URL;Latency
20.12.2011 13:45;40142;Login;200;Login 1-2;text;true;862184;http://localhost:8080/xxx;5378
我的(正在运行)模板:
<#list csv.headers as h>${h}<#if h_has_next>;</#if></#list>
<#list csv as row>
<#list csv.headers as h><#if h_index == 0>Do the date magic<#else>${(row[h]!"N/A")?string}</#if>$<#if h_has_next>;</#if></#list>
</#list>
对于第0列,我想进行转换。我不想写一个包含日期的新模型。我的问题是,这可以在模板中完成,而无需修改freemarker或fmpp。
任何想法?
答案 0 :(得分:24)
FreeMarker 2.3.17为此引入了?number_to_date
,?number_to_time
和?number_to_datetime
。请参阅:http://freemarker.org/docs/ref_builtins_expert.html#ref_builtin_numToDate
您还需要设置日期/时间格式和区域;见http://fmpp.sourceforge.net/settings.html#sect17
Mayble你必须在FMPP中升级FreeMarker。为此,只需将<FMPP_HOME>/lib/freemarker.jar
替换为最新版本。
答案 1 :(得分:4)
在我的情况下,我使用它:
{?(时间戳)number_to_date字符串(&#34; YYYY.MM.DD&#34;)}$
将number_to_date
替换为number_to_datetime
或number_to_time
;
您可以根据需要将yyyy.MM.dd
替换为YYYY-MM-dd HH:mm:ss
。
检查一下: http://freemarker.org/docs/ref_builtins_expert.html#ref_builtin_numToDate