类 javax.servlet.ServletInputStream
的使用

使用 ServletInputStream 的软件包
javax.servlet The javax.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container. 
javax.servlet.http The javax.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container. 
org.eclipse.jetty.ajp   
org.eclipse.jetty.nested   
org.eclipse.jetty.server   
 

javax.servletServletInputStream 的使用
 

返回 ServletInputStreamjavax.servlet 中的方法
 ServletInputStream ServletRequestWrapper.getInputStream()
          The default behavior of this method is to return getInputStream() on the wrapped request object.
 ServletInputStream ServletRequest.getInputStream()
          Retrieves the body of the request as binary data using a ServletInputStream.
 

javax.servlet.httpServletInputStream 的使用
 

参数类型为 ServletInputStreamjavax.servlet.http 中的方法
static Hashtable<String,String[]> HttpUtils.parsePostData(int len, ServletInputStream in)
          已过时。 Parses data from an HTML form that the client sends to the server using the HTTP POST method and the application/x-www-form-urlencoded MIME type.
 

org.eclipse.jetty.ajpServletInputStream 的使用
 

org.eclipse.jetty.ajpServletInputStream 的子类
static class Ajp13Parser.Input
          TODO Make this common with HttpParser
 

返回 ServletInputStreamorg.eclipse.jetty.ajp 中的方法
 ServletInputStream Ajp13Connection.getInputStream()
           
 

org.eclipse.jetty.nestedServletInputStream 的使用
 

返回 ServletInputStreamorg.eclipse.jetty.nested 中的方法
 ServletInputStream NestedConnection.getInputStream()
           
 ServletInputStream NestedEndPoint.getServletInputStream()
           
 

org.eclipse.jetty.serverServletInputStream 的使用
 

org.eclipse.jetty.serverServletInputStream 的子类
 class HttpInput
           
 

声明为 ServletInputStreamorg.eclipse.jetty.server 中的字段
protected  ServletInputStream AbstractHttpConnection._in
           
 

返回 ServletInputStreamorg.eclipse.jetty.server 中的方法
 ServletInputStream Request.getInputStream()
           
 ServletInputStream AbstractHttpConnection.getInputStream()
          Get the inputStream from the connection.
 



Copyright © 2013. All Rights Reserved.