views:

82

answers:

1

As the title, I create a ByteArray to store the file in blob like this:
byte[] red_buf = myCursor.getBlob(1);
And I wanna use FileOutputStream to open.
But I don't know how to do.
Can anyone give me a example or website please ??

A: 

Hi,

What you're looking for may actually be ByteArrayInputStream, instead of FileOutputStream. That's just a guess because the question is very unclear

ognian