真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

NVelocity內容生成方式有哪些-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關NVelocity內容生成方式有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

成都創(chuàng)新互聯(lián)是專業(yè)的云巖網(wǎng)站建設公司,云巖接單;提供成都網(wǎng)站設計、成都網(wǎng)站制作、外貿網(wǎng)站建設,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行云巖網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

1、基于NVelocity的幾種內容生成方式


NVelocity內容生成方式有哪些

從上面的圖示,我們可以看到,NVelocity的模板化生成包含了3種方式,一種是從文件到文件或者字符串,一種是從字符串到字符串,他們各自的處理方式有所不同,但是都能正確解析里面的內容。


為了更好利用NVelocity的特性,我們對它進行一個初步的輔助類封裝。


/// 
/// 基于NVelocity的模板文件生成輔助類
/// 
public class NVelocityHelper
{
protected VelocityContext context;
protected Template template;
protected string templateFile;
/// 
/// 存放鍵值的字典內容
/// 
private Dictionary KeyObjDict = new Dictionary();
/// 
/// 添加一個鍵值對象
/// 
/// 鍵,不可重復
/// 值
/// 
public NVelocityHelper AddKeyValue(string key, object value)
{
if (!KeyObjDict.ContainsKey(key))
{
KeyObjDict.Add(key, value);
}
return this;
}................

上面的AddKeyValue方法,主要用來為模板引擎添加一些需要綁定在頁面上的變量對象,這樣頁面變量參數(shù)的內容就能正確解析出來了。


為了使用NVelocity的各種特性,我們需要在輔助類里面構造模板的相關信息,設置相關參數(shù)。


/// 
/// 初始化模板引擎
/// 
protected virtual void InitTemplateEngine()
{
try
{
//Velocity.Init(NVELOCITY_PROPERTY);
VelocityEngine templateEngine = new VelocityEngine();
templateEngine.SetProperty(RuntimeConstants.RESOURCE_LOADER, "file");
templateEngine.SetProperty(RuntimeConstants.INPUT_ENCODING, "utf-8");
templateEngine.SetProperty(RuntimeConstants.OUTPUT_ENCODING, "utf-8");
//如果設置了FILE_RESOURCE_LOADER_PATH屬性,那么模板文件的基礎路徑就是基于這個設置的目錄,否則默認當前運行目錄
templateEngine.SetProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, AppDomain.CurrentDomain.BaseDirectory);
templateEngine.Init();
template = templateEngine.GetTemplate(templateFile);
}
catch (ResourceNotFoundException re)
{
string error = string.Format("Cannot find template " + templateFile);
LogTextHelper.Error(error);
throw new Exception(error, re);
}
catch (ParseErrorException pee)
{
string error = string.Format("Syntax error in template " + templateFile + ":" + pee.StackTrace);
LogTextHelper.Error(error);
throw new Exception(error, pee);
}
}

在生成內容之前,需要把相關的對象屬性綁定到模板引擎的上下文對象里面。


/// 
/// 初始化上下文的內容
/// 
private void InitContext()
{
context = new VelocityContext();
foreach (string key in KeyObjDict.Keys)
{
context.Put(key, KeyObjDict[key]);
}
}

1)根據(jù)模板文件構造對應的文件內容


/// 
///根據(jù)模板創(chuàng)建輸出的文件,并返回生成的文件路徑
/// 
public virtual string ExecuteFile()
{
string fileName = "";
if (template != null)
{
string filePath = CheckEndBySlash(directoryOfOutput);
fileName = filePath + fileNameOfOutput + fileExtension;
if (!string.IsNullOrEmpty(filePath) && !Directory.Exists(filePath))
{
Directory.CreateDirectory(filePath);
}
//LogTextHelper.Debug(string.Format("Class file output path:{0}", fileName));
InitContext();
using (StreamWriter writer = new StreamWriter(fileName, false))
{
template.Merge(context, writer);
}
}
return fileName;
}

2)根據(jù)模板文件構造字符串內容


/// 
/// 根據(jù)模板輸出字符串內容
/// 
/// 
/// 
public string ExecuteString()
{
InitContext(); 
System.IO.StringWriter writer = new System.IO.StringWriter();
template.Merge(context, writer);
return writer.GetStringBuilder().ToString();
}

3)根據(jù)字符串內容構造字符串輸出


/// 
/// 合并字符串的內容
/// 
/// 
public string ExecuteMergeString(string inputString)
{
VelocityEngine templateEngine = new VelocityEngine();
templateEngine.Init();
InitContext();
System.IO.StringWriter writer = new System.IO.StringWriter();
templateEngine.Evaluate(context, writer, "mystring", inputString);
return writer.GetStringBuilder().ToString();
}

上面幾種操作模板輸出的方式,其調用代碼如下所示。


private void btnGenerateFile_Click(object sender, EventArgs e)
{
string tempalte = "Template/template.htm";//相對目錄
TestInfo info = new TestInfo();
info.Title = "測試標題";
info.Content = "測試內容,這是測試內容";
info.Datetime = DateTime.Now;
NVelocityHelper adapter = new NVelocityHelper(tempalte);
adapter.AddKeyValue("title", "This is a title")
.AddKeyValue("content", "This is a Content")
.AddKeyValue("datetime", System.DateTime.Now)
.AddKeyValue("TestInfo", info);
adapter.FileNameOfOutput = "testTemplate";
string filePath = adapter.ExecuteFile();
if (!string.IsNullOrEmpty(filePath))
{
Process.Start(filePath);
}
} 
private void btnGenerate_Click(object sender, EventArgs e)
{
string tempalte = "Template/template.htm";//相對目錄
TestInfo info = new TestInfo();
info.Title = "測試標題";
info.Content = "測試內容,這是測試內容";
info.Datetime = DateTime.Now;
NVelocityHelper adapter = new NVelocityHelper(tempalte);
adapter.AddKeyValue("title", "This is a title")
.AddKeyValue("content", "This is a Content")
.AddKeyValue("datetime", System.DateTime.Now)
.AddKeyValue("TestInfo", info);
this.txtCode.Text = adapter.ExecuteString();
} 
private void btnMergeString_Click(object sender, EventArgs e)
{
System.Text.StringBuilder builder = new System.Text.StringBuilder();
builder.Append(
"${Title}\r\n" +
"$Content\r\n" +
"$Digest\r\n" +
"$Author\r\n" +
"$Keyword\r\n" +
"$DateTime\r\n");
NVelocityHelper adapter = new NVelocityHelper();
adapter.AddKeyValue("Title", "標題").
AddKeyValue("Content", "內容").
AddKeyValue("Digest", "摘要").
AddKeyValue("Author", "作者").
AddKeyValue("Keyword", "關鍵詞").
AddKeyValue("DateTime", DateTime.Now);
this.txtCode.Text = adapter.ExecuteMergeString(builder.ToString());
}

2、模板引擎NVelocity的幾種應用場景


上面的幾種操作模板內容的方式,能夠在絕大多數(shù)情況下滿足我們的應用要求,如可以在代碼生成工具里面,定義一些自定義的內容模板,然后結合數(shù)據(jù)庫的元數(shù)據(jù)信息,實現(xiàn)豐富邏輯的代碼生成操作。


NVelocity內容生成方式有哪些

也可以在一些內容管理的應用上(如文章管理方面),根據(jù)輸入的內容,實現(xiàn)文章內容的文件生成操作,這個生成后,我們就直接使用文章的文件鏈接地址就可以了。


NVelocity內容生成方式有哪些

或者根據(jù)數(shù)據(jù)信息生成具體的頁面,用于套打操作,如下是Winform里面的套打處理。


NVelocity內容生成方式有哪些

NVelocity內容生成方式有哪些

感謝各位的閱讀!關于“NVelocity內容生成方式有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!


名稱欄目:NVelocity內容生成方式有哪些-創(chuàng)新互聯(lián)
文章URL:http://weahome.cn/article/cdpeid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部