I have a ByteArrayEntity as follows:
ByteArrayOutputStream bos = new ByteArrayOutputStream();
tempPic.compress(CompressFormat.PNG, 0, bos);
byte[] bitmapdata = bos.toByteArray();
photoByteArray = new ByteArrayEntity(bitmapdata);
tempPic is of type android.graphics.Bitmap.
What I then have to do is make a request using an AsyncTask that takes an array of Objects which I later then cast to their various types. However, when attempting to cast my ByteArrayEntity later on, I get a ClassCastException, I was wondering if anyone could explain this?
protected HttpResponse doInBackground(Object... httpRequest)
{
ByteArrayEntity dataPhoto = null;
// Further code
if(myCondition)
{
dataPhoto = (ByteArrayEntity)httpRequest[2];
}
}
I really need to get this working, but don't really have time currently to reimplement this completely, so any hacks or workarounds would be appreciated. I'm working with Android 2.2
The whole aim is to take an image from the Android camera, then setEntity of my HttpRequest to a ByteArrayEntity and POST my image to a server where this is then handled.