Thursday, March 31, 2011

Java Blob to Image

I have a blob data object which i can return from a database however i want to be able to use this on an awt application which is running on a PDA running J2ME. How would i do this?

From stackoverflow
  • AFAIK, J2ME has no AWT. It uses javax.microedition.lcdui. Have a look at MIDP 2.0 spec. Some extension packages which are not implemented by all phones can be found here

  • It looks to me like javax.microedition.lcdui.Image.createImage could take your byte array and generate an image for you. Could you please be more specific?

0 comments:

Post a Comment