从零学习freemarker(1)老紫竹的第一个freemaker程序

原文地址:http://www.java2000.net/p7840

  1 下载freemarker
我用的是 配置过程2.3.13
2 配置Build Path。
解压缩有,把lib里面的jar加入Eclipse的Build Path 里面
3 创建测试程序

  1. package freemarker;
  2. import java.io.File;
  3. import java.io.FileOutputStream;
  4. import java.io.OutputStreamWriter;
  5. import java.io.Writer;
  6. import java.util.HashMap;
  7. import java.util.Map;
  8. import freemarker.template.Configuration;
  9. import freemarker.template.Template;
  10. public class Test1 {
  11.   private Configuration cfg;
  12.   public Configuration getCfg() {
  13.     return cfg;
  14.   }
  15.   public void init() throws Exception {
  16.     cfg = new Configuration();
  17.     cfg.setDirectoryForTemplateLoading(new File("bin/freemaker"));
  18.   }
  19.   public static void main(String[] args) throws Exception {
  20.     Test1 obj = new Test1();
  21.     obj.init();
  22.     Map root = new HashMap();
  23.     Template t = obj.getCfg().getTemplate("Test1.ftl");
  24.     Writer out = new OutputStreamWriter(new FileOutputStream("Test1.html"), "GBK");
  25.     t.process(root, out);
  26.     System.out.println("Successfull................");
  27.   }
  28. }


4 使用到的模板
  1. <#macro greet person,website>
  2.   Hello ${person}! Your Website is ${website}.
  3. </#macro>
  4. <html>
  5. <head>
  6.   <title>Hello World</title>
  7. </head>
  8. <body>
  9. <@greet person="老紫竹" website="www.java2000.net"/>
  10. </body>
  11. </html>


5 运行结果
  1. <html>
  2. <head>
  3.   <title>Hello World</title>
  4. </head>
  5. <body>
  6.   Hello 老紫竹! Your Website is <a target="_blank" href="www.java2000.net.">www.java2000.net.</a>
  7. </body>
  8. </html>













lass="alt"> </html>

你可能感兴趣的:(eclipse,freemarker,String,Build,Path,website)