Java 基礎三:使用Velocity模板產生 xml

來源:互聯網
上載者:User

Velocity是一個基於java的模板引擎(template engine)。它允許任何人僅僅簡單的使用範本語言(template language)來引用由java代碼定義的對象。

現在我們就來看這個小例子:

1. 建立一個Velocity模板,以vm結尾,例子中模板檔案為TaxReportXml.vm,內容如下:

<?xml version="1.0" encoding="utf-8"?><html>      <head></head>      <body>          HELLO! $name,Welcome to velocity!      </body>  </html> 
$name 為需要程式傳入的參數。

2. 以下為 velocityTest的代碼:

package velocity;import java.io.File;import java.io.FileWriter;import java.io.IOException;import java.text.MessageFormat;import org.apache.velocity.Template;import org.apache.velocity.VelocityContext;import org.apache.velocity.app.VelocityEngine;import org.joda.time.DateTime;public class VelocityTest {/** * @param args */public static void main(String[] args) {//得到VelocityEngineVelocityEngine ve = new VelocityEngine();//得到模板檔案        Template template = ve.getTemplate("/src/velocity/TaxReportXml.vm", "UTF-8");        VelocityContext context = new VelocityContext();        //傳入參數        context.put("name", "jacky");        try {        //產生xmlFileWriter fileWriter = getFileWriter("velocity_test.xml");//調用merge方法傳入context        template.merge(context, fileWriter);        fileWriter.flush();        fileWriter.close();} catch (IOException e) {e.printStackTrace();}   }    private static FileWriter getFileWriter(String fileName) throws IOException {        String fullPath = MessageFormat.format("{1}{0}{2}",                File.separator,                "d://",                fileName);        System.out.println("fileName = " + fullPath);        File outputFile = new File(fullPath);        return new FileWriter(outputFile);    }}

看一下運行結果,在d:下的velocity_test.xml中:

<?xml version="1.0" encoding="utf-8"?><html>      <head></head>      <body>          HELLO! jacky,Welcome to velocity!      </body>  </html> 
參數已經傳到xml裡了,很簡單吧


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.