首页  >  文章  >  后端开发  >  velocity第11个应用例子---null处理

velocity第11个应用例子---null处理

黄舟
黄舟原创
2017-01-17 11:07:391189浏览

如果不做处理,会原样输出 
$title

这不是我们期望的

我们希望输出空字符串,应该这样做:$!title

// 2Create a Context object
VelocityContextcontext = new VelocityContext();
// 3 Addyou data object to this context
context.put("title",null);
// 4Choose a template
Templatetemplate = Velocity.getTemplate("null.vm");
// 5Merge the template and you data to produce the output
StringWritersw = new StringWriter();
BufferedWriterbufferWriter = new BufferedWriter(sw);
template.merge(context,bufferWriter);
bufferWriter.flush();
System.out.println(sw.toString());
null.vm
$title
=====
$!title

以上就是velocity第11个应用例子---null处理的内容,更多相关内容请关注PHP中文网(www.php.cn)!


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn