代码
package freemaker;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.HashMap;
import java.util.Map;
import freemarker.template.Configuration;
import freemarker.template.Template;
public class TestInclude {
private Configuration cfg;
public Configuration getCfg() {
return cfg;
}
public void init() throws Exception {
cfg = new Configuration();
cfg.setDirectoryForTemplateLoading(new File("bin/freemaker"));
}
public static void main(String[] args) throws Exception {
TestInclude obj = new TestInclude();
obj.init();
Map root = new HashMap();
Template t = obj.getCfg().getTemplate("TestInclude.ftl");
Writer out = new OutputStreamWriter(new FileOutputStream("TestInclude.html"), "GBK");
t.process(root, out);
System.out.println("Successfull................");
}
}
模板
<html>
<head>
<title>Test page</title>
</head>
<body>
<h1>Test page</h1>
<p>Blah blah...
<#include "/TestInclude.copyright.html">
</body>
</html>
TestInclude.copyright.html
<hr>
<i> Copyright (c) 2007-2008 <a href="http://www.java2000.net">JAVA世纪网</a>, <br>
版权所有. </i>
输出结果
<html>
<head>
<title>Test page</title>
</head>
<body>
<h1>Test page</h1>
<p>Blah blah...
<hr>
<i> Copyright (c) 2007-2008 <a href="http://www.java2000.net">JAVA世纪网</a>, <br>
版权所有. </i>
</body>
</html>