主頁(yè) > 知識(shí)庫(kù) > jsp生成靜態(tài)頁(yè)面的方法

jsp生成靜態(tài)頁(yè)面的方法

熱門標(biāo)簽:騰訊地圖標(biāo)注商戶改名注冊(cè)入駐 怎樣把地圖標(biāo)注出來(lái) 黃石智能營(yíng)銷電銷機(jī)器人效果 地圖標(biāo)注人員兼職 商丘百應(yīng)電話機(jī)器人有沒(méi)有效果 漯河辦理400電話 開封便宜外呼系統(tǒng)報(bào)價(jià) 電話機(jī)器人的特色和創(chuàng)新 淮南騰訊地圖標(biāo)注
復(fù)制代碼 代碼如下:

import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletResponseWrapper;

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");//你要訪問(wèn)的jsp文件,如index.jsp
  //則你訪問(wèn)這個(gè)servlet時(shí)加參數(shù).如http://localhost/toHtml?file_name=index

        url = "/"+file_name+".jsp";//這是你要生成HTML的jsp文件,如
                                   //http://localhost/index.jsp的執(zhí)行結(jié)果.

        name="/home/resin/resin-2.1.6/doc/"+file_name+".htm";//這是生成的html文件名,如index.htm.

        RequestDispatcher rd = sc.getRequestDispatcher(url);

        final ByteArrayOutputStream os = 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輸出的內(nèi)容寫到xxx.htm
        os.writeTo(fos);
        fos.close();
        PrintWriter out=response.getWriter();
        out.print("p align=center>font size=3 color=red>首頁(yè)已經(jīng)成功生成!Andrew/font>/p>");
    }
}

您可能感興趣的文章:
  • JSP頁(yè)面的動(dòng)態(tài)包含和靜態(tài)包含示例及介紹
  • 用JSP生成靜態(tài)頁(yè)面
  • 動(dòng)態(tài)JSP頁(yè)生成靜態(tài)HTML的方法
  • jsp中include指令靜態(tài)導(dǎo)入和動(dòng)態(tài)導(dǎo)入的區(qū)別詳解
  • JSP生成靜態(tài)頁(yè)實(shí)踐及其設(shè)計(jì)思想[轉(zhuǎn)]
  • jsp實(shí)現(xiàn)將動(dòng)態(tài)網(wǎng)頁(yè)轉(zhuǎn)換成靜態(tài)頁(yè)面的方法

標(biāo)簽:岳陽(yáng) 馬鞍山 武威 拉薩 紅河 亳州 鄭州 大興安嶺

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp生成靜態(tài)頁(yè)面的方法》,本文關(guān)鍵詞  jsp,生成,靜態(tài),頁(yè),面的,方法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp生成靜態(tài)頁(yè)面的方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于jsp生成靜態(tài)頁(yè)面的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章