rt,比如表格显示对应字段用*号屏蔽显示姓名中的几个字,拦截器?
6 回复
定义个Function 就行, 例如我这种,截最大长度
package net.wendal.nutzbook.beetl;
import org.beetl.core.Context;
import org.beetl.core.Function;
public class StringSubMaxFunction implements Function {
public Object call(Object[] paras, Context ctx) {
String cnt = (String) paras[0];
int max = ((Number)paras[1]).intValue();
if (cnt.length() <= max)
return cnt;
return cnt.substring(0, max);
}
}
添加回复
请先登陆