利用Java生成静态HMTL页面.doc_第1页
利用Java生成静态HMTL页面.doc_第2页
利用Java生成静态HMTL页面.doc_第3页
利用Java生成静态HMTL页面.doc_第4页
利用Java生成静态HMTL页面.doc_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

利用Java生成静态HMTL页面生成静态页面技术解决方案之一转载者前言:这是一个全面的jsp动态页面静态化方案,本站的帖子静态化方案将借鉴这篇帖子中方法。向的single的共享精神致敬。 转帖正文: 相信很多人都希望自己的页面越快越好,最好是能静态的,提高客户访问速度。也便于搜索引擎搜索。所以,就希望我们的动态读取数据库的页面,尽可能的生成静态页面。一下系列文章,介绍一下个人的解决方案。 本系列将介绍个人的一种方法,在不改变原来jsp文件的基础上,只需要加入少量的代码,就让你的新闻发布系统,很容易就完全变成静态的页面。 本文假设你是用java开发的web动态页面。 第一步,加入servlet.代码如下。 public class ToHtml extends HttpServlet public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException String url = ; String name = ; ServletContext sc = getServletContext(); String file_name = request.getParameter(file_name);/ 你要访问的jsp文件名,如index,不包括扩展名 / 则你访问这个servlet时加参数.如http:/localhost/test/toHtml?file_name=index url = / + file_name + .jsf;/ 你要生成的页面的文件名。我的扩展名为jsf . name = ConfConstants.CONTEXT_PATH+ file_name + .htm;/ 这是生成的html文件名,如index.htm.文件名字与源文件名相同。扩展名为htm /ConfConstants.CONTEXT_PATH为你的应用的上下文路径。 RequestDispatcher rd = sc.getRequestDispatcher(url); final ByteArrayOutputStream s = new ByteArrayOutputStream(); final ServletOutputStream stream = new ServletOutputStream() public void write(byte data, int offset, int length) os.write(data, offset, length); public void write(int b) throws IOException os.write(b); ; final PrintWriter pw = new PrintWriter(new OutputStreamWriter(os); HttpServletResponse rep = new HttpServletResponseWrapper(response) public ServletOutputStream getOutputStream() return stream; public PrintWriter getWriter() return pw; ; rd.include(request, rep); pw.flush(); FileOutputStream fos = new FileOutputStream(name); / 把jsp输出的内容写到xxx.htm os.writeTo(fos); fos.close(); PrintWriter ut = response.getWriter(); out .print(页面已经成功生成!single/space/? 233); 第二步、配置你的web.xml toHtml mj.util.html.ToHtml/你的servlet的类。 toHtml /toHtml 第三步、运行servlet。如:http:/localhost:8080/test/toHtml?file_name=index OK,这就在你的test项目的根目录下,生成了一个index.htm的静态文件。 局限性:本文只能生成一个文件!访问一次,生成一个文件。并且生成的文件名也与原来的文件名相同。 比较适合主页生成静态页面。 本系列的后续文章将解决更多的问题。使之在新闻发布系统中,很容易就集成应用。-生成静态页面技术解决方案之二 注意:转贴本文,请加上本文链接/space/?233/action_viewspace_itemid_21.html 在上一篇文章中,生成静态页面,是有一定的局限性的。生成主页是很方便,但要生成二级页面,就不方便了。 本文假设一个新闻发布系统。希望后台发布的,前台显示的是静态的文档。这就涉及,主页要是静态的,同时二级列表也是静态的,新闻内容也是静态的。也就是说,在发布一篇新闻的时候,可能涉及到三个地方生成静态文档。并且,要生成一个网页,必须访问一个servlet。在大量生成静态网页的时候, 以下方法,可以解决这些问题。 一、加入一下servelet /* * file_name 文件名及文件之后的参数.最好为a.jsf?fileId=aaaa * path 文件所在的路径.相对于根目录而言的. * realName文件要保存的名字 * realPath文件要保存的真实路径。默认与文件所在的目录相同。 */ public class ToHtmlPath extends HttpServlet public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException String url = ; String name = ; ServletContext sc = getServletContext(); String file_name = request.getParameter(file_name);/ 你要访问的jsp文件,如news.jsf。 / file_name如:fileDetail.jsf?fileId=56.要是有参数, 只有一个参数。并且以参数名作为文件名。 String realName = request.getParameter(realName);/ 要保存的文件名。如aaa;注意可以没有这个参数。 String path = request.getParameter(path);/ 你要访问的jsp文件路径。如news。注意可以没有这个参数。 String realPath = request.getParameter(realPath);/ 你要保存的文件路径,如htmlNews.注意可以没有这个参数。 / 下面确定要保存的文件名字。 if (realName = null | realName = ) int a = 0; a = file_name.indexOf(=) + 1; realName = file_name.substring(a); if (realName.indexOf(.)0) realName = file_name.substring(0, file_name.indexOf(.); / 下面构造要访问的页面。 if (path = null | path = ) url = / + file_name;/ 这是你要生成HTML的jsp文件,如 else url = / + path + / + file_name;/ 这是你要生成HTML的jsp文件,如 / 下面构造要保存的文件名,及路径。 / 1、如果有realPath,则保存在realPath下。 / 2、如果有path则保存在path下。 / 3、否则,保存在根目录下。 if (realPath = null | realPath = ) if (path = null | path = ) name = ConfConstants.CONTEXT_PATH + + realName + .htm;/ 这是生成的html文件名,如index.htm.说明: ConfConstants.CONTEXT_PATH为你的上下文路径。 else name = ConfConstants.CONTEXT_PATH + + path + + realName + .htm;/ 这是生成的html文件名,如index.htm. else name = ConfConstants.CONTEXT_PATH + + realPath + + realName + .htm;/ 这是生成的html文件名,如index.htm. / 访问请求的页面,并生成指定的文件。 RequestDispatcher rd = sc.getRequestDispatcher(url); final ByteArrayOutputStream s = new ByteArrayOutputStream(); final ServletOutputStream stream = new ServletOutputStream() public void write(byte data, int offset, int length) os.write(data, offset, length); public void write(int b) throws IOException os.write(b); ; final PrintWriter pw = new PrintWriter(new OutputStreamWriter(os); HttpServletResponse rep = new HttpServletResponseWrapper(response) public ServletOutputStream getOutputStream() return stream; public PrintWriter getWriter() return pw; ; rd.include(request, rep); pw.flush(); FileOutputStream fos = new FileOutputStream(name); / 把jsp输出的内容写到xxx.htm os.writeTo(fos); fos.close(); PrintWriter ut = response.getWriter(); out.print(success!); 二、在web.xml里面配置你的servlet toHtmlPath mj.util.html.ToHtmlPath toHtmlPath /toHtmlPath 三、写一个通用的方法,供调用。 public class CallHtml public static void callOnePage(String fileName, String path, String realName, String realPath) try String str = http:/localhost:8080/test/toHtmlPath?file_name= + fileName + &path= + path + &realName= + realName + &realPath= + realPath; int httpResult; URL url = new URL(str); URLConnection connection = url.openConnection(); connect(); HttpURLConnection httpURLConnection = (HttpURLConnection) connection; httpResult = httpURLConnection.getResponseCode(); if (httpResult != HttpURLConnection.HTTP_OK) System.out.println(没有连接成功); else System.out.println(连接成功了); catch (Exception e) / TODO: handle exception /这个方法适当重载,就可以省去一些参数传递。 四、在你的新闻发布save时,调用方法。 1、CallHtml.callOnePage(info.jsf?file_id=aaa,news, );/将在news目录下生成一个aaa.htm的静态文件 2、CallHtml.callOnePage(newsList.jsf,news, );/将在news目录下生成一个newsList.htm的静态文件,显示最新的新闻。 、CallHtml.callOnePage(index.jsf, );/生成主页。 好了,这就保持了,主页、列表、新闻内容都是最新的静态页面了。 -一个实现将动态页面转为静态的方案1.前言为了能深入浅出的理解这个框架的由来,我们首先来了解一下JSP解析器将我们写的JSP代码转换成的JAVA文件的内容。下面是一个JSP文件test.jsp经过TOMCAT转换出的JAVA文件test$jsp.java内容如下:package org.apache.jsp;import javax.servlet.*;import javax.servlet.http.*;import javax.servlet.jsp.*;import org.apache.jasper.runtime.*;public class test$jsp extends HttpJspBase static public testOutRedir$jsp( ) private static boolean _jspx_inited = false; public final void _jspx_init() throws org.apache.jasper.runtime.JspException public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException JspFactory _jspxFactory = null; PageContext pageContext = null; HttpSession session = null; ServletContext application = null; ServletConfig config = null; JspWriter out = null; Object page = this; String _value = null; try if (_jspx_inited = false) synchronized (this) if (_jspx_inited = false) _jspx_init(); _jspx_inited = true; _jspxFactory = JspFactory.getDefaultFactory(); response.setContentType(text/html;charset=GB2312); pageContext = _jspxFactory.getPageContext(this, request, response, , true, 8192, true); application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); /为了节省篇幅,我删除了解释器添加的注释 out.write(rn);/上一句是由于后面的换行产生的 out.write(); out.write(rnrnrnrn); out.print( 输出 ); out.write(rnrnrnrn); catch (Throwable t) if (out != null & out.getBufferSize() != 0) out.clearBuffer(); if (pageContext != null) pageContext.handlePageException(t); finally if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext); 从上面的代码中可以清晰的看到JSP内建的几个对象(out、request、response、session、pageContext、application、config、page)是怎么产生的,懂servlet的朋友一看就能明白。下面重点理解一下out对象,它被声明为JspWriter类型,JspWriter是一个抽象类,在包javax.servlet.jsp中可以找到它的定义。abstractpublic class javax.servlet.jsp.JspWriter extends java.io.Writer final public static int NO_BUFFER = 0; final public static int DEFAULT_BUFFER = -1; final public static int UNBOUNDED_BUFFER = -2; protected int bufferSize; protected Boolean autoFlush; protected javax.servlet.jsp.JspWriter(int arg1, boolean arg2); abstractpublicvoid newLine() throws IOException ; abstractpublicvoid print(boolean arg0) throws IOException ; abstractpublicvoid print(char arg0) throws IOException ; abstractpublicvoid print(int arg0) throws IOException ; abstractpublicvoid print(long arg0) throws IOException ; abstractpublicvoid print(float arg0) throws IOException ; abstractpublicvoid print(double arg0) throws IOException ; abstractpublicvoid print(char arg0) throws IOException ; abstractpublicvoid print(String arg0) throws IOException ; abstractpublicvoid print(Object arg0) throws IOException ; abstractpublicvoid println() throws IOException ; abstractpublicvoid println(boolean arg0) throws IOException ; abstractpublicvoid println(char arg0) throws IOException ; abstractpublicvoid println(int arg0) throws IOException ; abstractpublicvoid println(long arg0) throws IOException ; abstractpublicvoid println(float arg0) throws IOException ; abstractpublicvoid println(double arg0) throws IOException ; abstractpublicvoid println(char arg0) throws IOException ; abstractpublicvoid println(String arg0) throws IOException ; abtractpublicvoid println(Object arg0) throws IOException ; abstractpublicvoid clear() throws IOException ; abstractpublicvoid clearBuffer() throws IOException ; abstractpublicvoid flush() throws IOException ; abstractpublicvoid close() throws IOException ; public int getBufferSize() ; abstractpublicint getRemaining() ; publicboolean isAutoFlush() ;我相信当我写到这里你可能已经知道我想怎么做了。是的,来个偷天换日,继承JspWriter类,然后实现其定义的虚函数,然后把out变量替换成你自己实现的类的实例就ok了。2.实现替换假设3.更新问题下面就讨论一下如何更新生成静态文件,其实从上面实现中你可以看到,很简单的就是将生成的静态文件删除即可,至于什么时候删除,要看你的需求了。我能想到的几种情况如下 当用来生成页面的数据更新时 如果不需要很提供时时的数据可以定时更新 永远不更新-JSP生成静态HTML页面范例先建立一个模本页面:template.htm#title# #title# 作者:#author#  #content#=再写一个jsp页面: buildhtml.jsp%tryString title=jsp生成静态html文件;S

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论