views:

768

answers:

2

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?

+1  A: 

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

Johannes Weiß
+1  A: 

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?

jsight