I know of using ImageIO on Java.
ImageIO.read(new ByteArrayInputStream(bytes));
I don’t have access to this class on android 2.2.
Does anyone know a jar file which would allow me to convert byte array to jpg or bmp? or can someone provide me another solution?
Take a look at the
BitmapFactoryclass, especially thedecodeByteArray()-method.