最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Servlet缓冲Buffer应用实例
时间:2022-06-29 02:39:54 编辑:袖梨 来源:一聚教程网
Servlet缓冲Buffer应用,在现在的编程语言中有大量的编辑缓存技术,当然java的buffer也算是一种了,下面我们来看看关于servlet buffer的二种方法。
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.net.*;public class MyServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
res.setBufferSize(8 * 1024); // 8K buffer
res.setContentType("text/html");
PrintWriter out = res.getWriter();int size = res.getBufferSize(); // returns 8096 or greater
// Record the default size, in the log
log("The default buffer size is " + size);out.println("The client won't see this");
res.reset();
out.println("And this won't be seen if sendError() is called");
if (req.getParameter("important_parameter") == null) {
res.sendError(res.SC_BAD_REQUEST, "important_parameter needed");
}
}
}
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
MyServletName
MyServlet
MyServletName
/index.html
实例二
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.util.*;public class MyServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {res.setContentType("text/html");
// Ask for a 16K byte response buffer; do not set the content length
res.setBufferSize(16 * 1024);PrintWriter out = res.getWriter();
out.println("");
out.println("Hello World ");
out.println("");
out.println("Less than 16K of response body");
out.println("");
}
}
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
MyServletName
MyServlet
MyServletName
/index.html
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21