> I'm trying to draw an image downloaded from the web but keep getting
> the error "Cannot cast from Bitmap to byte[]". Here's the code
> snippet:
>
>
>         BufferedInputStream bis = new
> BufferedInputStream(somethingdownloaded);
>         DataInputStream dis = new DataInputStream(bis);
>         Bitmap image;
>
>         dis.read((byte[]) image); // "Error: cannot cast"
>
> What am I doing wrong?

First, image has not even been initialized, so you could not read from it
in any case.

Second, you can't cast from Bitmap to byte[], for the same reason you
cannot cast from Integer to int, or Double to double, or Boolean to
boolean. You cannot cast from an Object to a primitive.

Use BitmapFactory.decodeStream().

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
Android App Developer Books: http://commonsware.com/books.html


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.

Reply via email to