Java學習

          java,spring,structs,hibernate,jsf,ireport,jfreechart,jasperreport,tomcat,jboss -----本博客已經搬家了,新的地址是 http://www.javaly.cn 如果有對文章有任何疑問或者有任何不懂的地方,歡迎到www.javaly.cn (Java樂園)指出,我會盡力幫助解決。一起進步

           

          用JSP生成HTM網頁,減輕數據庫操作!

          模本頁面:template.htm
          <html>
          <head>
          <title>###title###</title>
          <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
          <LINK href="../css.css" rel=stylesheet type=text/css>
          </head>

          <body>
          <table width="500" border="0" align="center" cellpadding="0" cellspacing="2">
          <tr>
          <td align="center">###title###</td>
          </tr>
          <tr>
          <td align="center">作者:###author###  </td>
          </tr>
          <tr>
          <td>###content###
          </td>

          </tr>

          </table>
          </body>
          </html>

          =========================================
          JSP文件: buildhtml.jsp

          <%@ page contentType="text/html; charset=gb2312" import="java.util.*,java.io.*"%>
          <%
          try{
          String title="jsp生成靜態html文件";
          String content="小樣,還搞不定你?";
          String editer="hpsoft";
          String filePath = "";
          filePath = request.getRealPath("/")+"template.htm";
          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);
          out.print(templateContent);
          templateContent=templateContent.replaceAll("###title###",title);
          templateContent=templateContent.replaceAll("###content###",content);
          templateContent=templateContent.replaceAll("###author###",editer);//替換掉模塊中相應的地方
          out.print(templateContent);
          // 根據時間得文件名
          Calendar calendar = Calendar.getInstance();
          String fileame = String.valueOf(calendar.getTimeInMillis()) +".html";
          fileame = request.getRealPath("/")+fileame;//生成的html文件保存路徑
          FileOutputStream fileoutputstream = new FileOutputStream(fileame);//建立文件輸出流
          out.print("文件輸出路徑:<br>");
          out.print(fileame);
          byte tag_bytes[] = templateContent.getBytes();
          fileoutputstream.write(tag_bytes);
          fileoutputstream.close();
          }
          catch(Exception e){
          out.print(e.toString());
          }

          %>

          posted on 2009-04-29 16:11 找個美女做老婆 閱讀(199) 評論(0)  編輯  收藏


          只有注冊用戶登錄后才能發表評論。


          網站導航:
           

          導航

          統計

          公告

          本blog已經搬到新家了, 新家:www.javaly.cn
           http://www.javaly.cn

          常用鏈接

          留言簿(6)

          隨筆檔案

          文章檔案

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 神农架林区| 鱼台县| 盐池县| 郧西县| 涟水县| 巧家县| 明光市| 蒙自县| 巴彦县| 尼玛县| 汤原县| 阳信县| 南澳县| 板桥市| 偏关县| 通化市| 凤台县| 微山县| 临澧县| 南康市| 安义县| 抚顺市| 台安县| 红桥区| 子长县| 玉门市| 北流市| 丰县| 桃园市| 微山县| 滦南县| 曲水县| 肥城市| 旅游| 井研县| 江陵县| 江川县| SHOW| 东明县| 安顺市| 综艺|