jsp生成静态html页面的几种方法

jsp生成静态html页面的几种方法

ID:34723994

大小:52.59 KB

页数:8页

时间:2019-03-10

jsp生成静态html页面的几种方法_第1页
jsp生成静态html页面的几种方法_第2页
jsp生成静态html页面的几种方法_第3页
jsp生成静态html页面的几种方法_第4页
jsp生成静态html页面的几种方法_第5页
资源描述:

《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###title###

6、l;charset=gb2312">        ###title###          author:###author###  

7、>        ###content###  =======================================================二、从动态页的URL获取相应页面内容并写入到文件/**Createdon2006-3-4*Tochangethetemplateforthisgeneratedfilegoto*Window>Preferences>Java>CodeGeneration>Codeand

8、Comments*/packagecom.easydone.cn.tools.utils;importjava.io.BufferedReader;importjava.io.File;importjava

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。