欢迎来到天天文库
浏览记录
ID:34723994
大小:52.59 KB
页数:8页
时间:2019-03-10
《jsp生成静态html页面的几种方法》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、JSP生成静态HTML页面的几种方法2008年04月12日星期六09:26一、从数据库中取相应数据并替换掉模板中的对应标签,下面是一个简单的示例1.buildhtml.jsp<%@pagecontentType="text/html;charset=gb2312"import="java.util.*,java.io.*"%><%try{Stringtitle="ThisisTitle";Stringcontent="ThisisContentArea";Stringediter="LaoMao";StringfilePath="";f
2、ilePath=request.getRealPath("/")+"test/template.htm";//out.print(filePath+"");StringtemplateContent="";FileInputStreamfileinputstream=newFileInputStream(filePath);//读取模块文件intlenght=fileinputstream.available();bytebytes[]=newbyte[lenght];fileinputstream.read(bytes);fi
3、leinputstream.close();templateContent=newString(bytes);//out.print(templateContent);templateContent=templateContent.replaceAll("###title###",title);templateContent=templateContent.replaceAll("###content###",content);templateContent=templateContent.replaceAll("###author##
4、#",editer);//替换掉模块中相应的地方//out.print(templateContent);//根据时间得文件名Calendarcalendar=Calendar.getInstance();Stringfileame=String.valueOf(calendar.getTimeInMillis())+".html";fileame=request.getRealPath("/")+fileame;//生成的html文件保存路径FileOutputStreamfileoutputstream=newFileOutputS
5、tream(fileame);//建立文件输出流bytetag_bytes[]=templateContent.getBytes();fileoutputstream.write(tag_bytes);fileoutputstream.close();}catch(Exceptione){out.print(e.toString());}%>2.template.htm
6、l;charset=gb2312"> ###title### author:###author### 7、> ###content### =======================================================二、从动态页的URL获取相应页面内容并写入到文件/**Createdon2006-3-4*Tochangethetemplateforthisgeneratedfilegoto*Window>Preferences>Java>CodeGeneration>Codeand
7、>
8、Comments*/packagecom.easydone.cn.tools.utils;importjava.io.BufferedReader;importjava.io.File;importjava
此文档下载收益归作者所有