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

ByteArrayEntity

extends AbstractHttpEntity
implements Cloneable
java.lang.Object
   ↳ org.apache.http.entity.AbstractHttpEntity
     ↳ org.apache.http.entity.ByteArrayEntity

Class Overview

An entity whose content is retrieved from a byte array.

Summary

Fields
protected final byte[] content
[Expand]
Inherited Fields
From class org.apache.http.entity.AbstractHttpEntity
Public Constructors
ByteArrayEntity (byte[] b)
Public Methods
Object clone ()
Creates and returns a copy of this Object .
InputStream getContent ()
long getContentLength ()
boolean isRepeatable ()
boolean isStreaming ()
Tells that this entity is not streaming.
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

Fields

protected final byte[] content

Added in API level 1

Public Constructors

public ByteArrayEntity (byte[] b)

Added in API level 1

Public Methods

public Object clone ()

Added in API level 1

Creates and returns a copy of this Object . The default implementation returns a so-called "shallow" copy: It creates a new instance of the same class and then copies the field values (including object references) from this instance to the new instance. A "deep" copy, in contrast, would also recursively clone nested objects. A subclass that needs to implement this kind of cloning should call super.clone() to create the new instance and then create deep copies of the nested, mutable objects.

Returns
  • a copy of this object.

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

Tells that this entity is not streaming.

Returns
  • false

public void writeTo ( OutputStream outstream)

Added in API level 1