Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

InputStreamEntity

extends AbstractHttpEntity
java.lang.Object
   ↳ org.apache.http.entity.AbstractHttpEntity
     ↳ org.apache.http.entity.InputStreamEntity

Class Overview

A streamed entity obtaining content from an InputStream .

Summary

[Expand]
Inherited Fields
From class org.apache.http.entity.AbstractHttpEntity
Public Constructors
InputStreamEntity ( InputStream instream, long length)
Public Methods
void consumeContent ()
Does not consume anything.
InputStream getContent ()
long getContentLength ()
boolean isRepeatable ()
boolean isStreaming ()
void writeTo ( OutputStream outstream)
[Expand]
Inherited Methods
From class org.apache.http.entity.AbstractHttpEntity
From class java.lang.Object
From interface org.apache.http.HttpEntity

Public Constructors

public InputStreamEntity ( InputStream instream, long length)

Added in API level 1

Public Methods

public void consumeContent ()

Added in API level 1

Does not consume anything. The default implementation does nothing if isStreaming returns false , and throws an exception if it returns true . This removes the burden of implementing an empty method for non-streaming entities.

public InputStream getContent ()

Added in API level 1

public long getContentLength ()

Added in API level 1

public boolean isRepeatable ()

Added in API level 1

public boolean isStreaming ()

Added in API level 1

public void writeTo ( OutputStream outstream)

Added in API level 1