程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> jsp 生成靜態頁面代碼

jsp 生成靜態頁面代碼

編輯:關於JAVA
 

網頁特效p/網頁特效p.html target=_blank >jsp教程 生成靜態頁面代碼
buildhtml.java:
import java.util.*;
import java.io.*;
public class htmlfile{
public static void main(string[] args){
try{
string title="測試";
string content="測試"
string editer="";
string filepath = "";
filepath ="template.html";
system.out.print(filepath);
string templatecontent="";
fileinputstream fileinputstream = new fileinputstream(filepath);// 讀取模板文件
int lenght = fileinputstream.available();
byte bytes[] = new byte[lenght];
fileinputstream.read(bytes);
fileinputstream.close();
templatecontent = new string(bytes);
system.out.print(templatecontent);
templatecontent=templatecontent.replaceall("###title###",title);
templatecontent=templatecontent.replaceall("###content###",content);
templatecontent=templatecontent.replaceall("###author###",editer);// 替換掉模板中相應的地方
system.out.print(templatecontent);
// 根據時間得文件名
calendar calendar = calendar.getinstance();
string fileame = string.valueof(calendar.gettimeinmillis()) +".html";
fileame = "/" + fileame;// 生成的html文件保存路徑。
fileoutputstream fileoutputstream = new fileoutputstream(fileame);// 建立文件輸出流
system.out.print("文件輸出路徑:");
system.out.print(fileame);
byte tag_bytes[] = templatecontent.getbytes();
fileoutputstream.write(tag_bytes);
fileoutputstream.close();
}catch(exception e){
system.out.print(e.tostring());
}
}
}
%>
模板文件
<html>
<head>
<title>${title} </title>
</head>
<body>
${content}
</body>
</html>
另一種方法 freemarker
用freemarker是這樣的原理:
1.獲取模板:也就是你事先必須要寫好模板樣例。再次調用這個模板的時候,只是從緩存中去讀取而已,
不會再去對這個模板進行實例化template temp = cfg.gettemplate("test.ftl");
gettemplate方法。
2.把模板與數據模型結合:數據模型+模版=輸出,而我們一旦擁有數據模型(root)和一個模版
(template)那麼我們就可以把他們合並獲得輸出。
以上這個過程是通過template 類的process 方法來實現的,該方法需要兩個參數一個是
表示數據模型的root 一個表示輸出的writer。它把解析過的文件輸出到writer 上。簡單起
見,我把輸出指定到了控制台(標准輸出)
writer out = new outputstreamwriter(system.out);
temp.process(root, out);
out.flush();

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved