何も処理しない場合は、そのまま出力されます
$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---null 処理コンテンツの 11 番目のアプリケーション例です。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。