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 找個美女做老婆 閱讀(204) 評論(0)  編輯  收藏


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


          網站導航:
           

          導航

          統計

          公告

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

          常用鏈接

          留言簿(6)

          隨筆檔案

          文章檔案

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 图木舒克市| 南和县| 大宁县| 沂南县| 西乡县| 习水县| 高陵县| 东平县| 石家庄市| 山东| 嘉禾县| 高雄市| 陆良县| 栾城县| 嫩江县| 杨浦区| 房产| 射阳县| 保德县| 沾化县| 祁门县| 江都市| 昌黎县| 开原市| 浪卡子县| 临沧市| 永泰县| 香河县| 仁寿县| 济南市| 称多县| 万安县| 津南区| 沂南县| 若羌县| 姜堰市| 长宁县| 和静县| 扎赉特旗| 长岛县| 缙云县|