国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JSP > 正文

用 servlet 將jsp文件內(nèi)容轉(zhuǎn)為html

2024-09-05 00:17:09
字體:
供稿:網(wǎng)友

用servlet將jsp文件內(nèi)容轉(zhuǎn)為html。代碼如下:

package examples;
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 {
private static final String CONTENT_TYPE = "text/html; charset=GBK";
// Initialize global variables
public void init() throws ServletException {
}

// Process the HTTP Get request
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType(CONTENT_TYPE);
service(request, response);
/**
* 只有成功初始化后此方法才能被調(diào)用處理用戶請(qǐng)求。前一個(gè)參數(shù)提供訪問初始請(qǐng)求數(shù)據(jù)的方法和字段,
* 后一個(gè)提供servlet構(gòu)造響應(yīng)的方法。
*/
}
// Process the HTTP Post request
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
public void destroy() {
}
public void service(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

ServletContext sc = getServletContext();
String url = "/index.jsp";

String name = "index.htm"; // 這是生成的html文件名

String pName = "e://Tomcat 5.5//webapps//jspTohtml//index.htm"; // 生成html的完整路徑
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(pName); // 把jsp輸出的內(nèi)容寫到指定路徑的htm文件中
os.writeTo(fos);
fos.close();
response.sendRedirect(name); // 書寫完畢后轉(zhuǎn)向htm頁(yè)面
}
}

在web.xml文件中配置:

< servlet> < servlet-name>Tohtml< /servlet-name> < servlet-class>examples.ToHtml< /servlet-class>< /servlet> < servlet-mapping> < servlet-name>Tohtml< /servlet-name> < url-pattern>/Tohtml< /url-pattern> < /servlet-mapping>

下面是用來測(cè)試的index.jsp:

< %@ page contentType="text/html; charset=gb2312" %>< html> < head> < title>Cache Filter Test< /title> < meta http-equiv="Content-Type" content="text/html; charset=gb2312"> < /head> < body>簡(jiǎn)單測(cè)試:s=< % int s=0; // mock time-consuming code for (int i=0;i< 1000;i ) { for (int j=0;j< 1000;j ) { s=s j; } }out.print(s);%> < /body>< /html>

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 尚义县| 桓台县| 手游| 聂拉木县| 罗源县| 江源县| 亳州市| 郸城县| 胶州市| 西青区| 江达县| 宁津县| 江达县| 普格县| 安龙县| 都安| 张家口市| 原阳县| 冕宁县| 舞阳县| 郎溪县| 靖边县| 博白县| 寻甸| 苏州市| 都昌县| 晋中市| 西畴县| 阜阳市| 英山县| 双牌县| 达日县| 高邮市| 南召县| 金乡县| 宜良县| 通许县| 堆龙德庆县| 金山区| 独山县| 民勤县|