(這個和把jsp產生靜態html不同,這個所有的新聞都是靜態
使用了htm模板,不一樣的地方就替換掉了
)
1、首先要一個寫好的htm檔案模板,然後幾個需要替換的地方如新聞標題、新聞內容直接根據輸入的來替換,檔案名稱字就用日期如2000-12-18-1.htm類似的;
<%@ page language="java" contentType="text/html;charset=utf-8" errorPage=""%>
<%@ page import="java.util.*,java.io.*"%>
<%@ include file="../inc/includeBean.jsp"%>
<%
request.setCharacterEncoding("utf-8");
String title=request.getParameter("newstitle");
String newsfrom = request.getParameter("newsfrom");
String doct = request.getParameter("newsdoct");
String fileame="";
int a = 0;
try{
String filePath = "",path="";
filePath = request.getRealPath("/")+"news/modle.html";
filePath = filePath.replaceAll("////","/");
String templateContent="";
//讀取hmtl模板檔案
FileInputStream fis = new FileInputStream(filePath);
StringBuffer content = new StringBuffer();
DataInputStream in = new DataInputStream(fis);
BufferedReader br = new BufferedReader(new InputStreamReader(in, "UTF-8"));
String line = null;
while ((line = br.readLine()) != null)
content.append(line + "/n");
br.close();
in.close();
fis.close();
//替換模板裡面的相關部分
templateContent = new String(content);
templateContent=templateContent.replaceAll("###title###",title);
templateContent=templateContent.replaceAll("###source###",newsfrom);
templateContent=templateContent.replaceAll("###addtime###",nowTime);
templateContent=templateContent.replaceAll("###article###",doct);//替換掉模組中相應的地方
Calendar calendar = Calendar.getInstance();
fileame = String.valueOf(calendar.getTimeInMillis()) +".html";
//建立新聞頁面存放目錄
path= request.getRealPath("/")+"news/"+nowTime+"/";
File d=new File(path);//建立代表Sub目錄的File對象,並得到它的一個引用
if(!d.exists()){//檢查Sub目錄是否存在
d.mkdir();//建立Sub目錄
}
File f=new File(path,fileame);
if(!f.exists()){//檢查File.txt是否存在
f.createNewFile();//在目前的目錄下建立一個名為File.txt的檔案
}
fileame = request.getRealPath("/")+"news/"+nowTime+"/"+fileame;//產生的html檔案儲存路徑
//替換後的內容寫入到檔案
FileOutputStream fos = new FileOutputStream(fileame);
Writer output = new OutputStreamWriter(fos, "UTF-8");
output.write(templateContent);
output.close();
fos.close();
}catch(Exception e){
System.out.print(e.toString());
}
%>
2、資料庫中同時儲存檔案標題、檔案名稱、日期等資訊,新聞內容等其他的資訊就沒有必要保留了;
3、前台調用直接從資料庫中取XXX.htm檔案名稱、檔案標題就行了;