个性化阅读
专注于IT技术分析

ServletInputStream类用法示例

  1. ServletInputStream类
  2. ServletInputStream类的方法

ServletInputStream类提供流以从请求对象读取二进制数据, 例如图像等。这是一个抽象类。

ServletRequest接口的getInputStream()方法返回ServletInputStream类的实例。因此可以作为:

ServletInputStream sin=request.getInputStream();

ServletInputStream类的方法

ServletInputStream类中仅定义了一种方法。

  1. int readLine(byte [] b, int off, int len)读取输入流。
赞(0)
未经允许不得转载:srcmini » ServletInputStream类用法示例

评论 抢沙发

评论前必须登录!