• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Java image and byte[] for J2ME and J2SE

 
Ranch Hand
Posts: 115
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

What i want is this:
1. Convert Image object to byte[] in J2ME application
2. Send it to Web Service (store it in database)
3. Read byte[] in J2SE application, convert it back to Image

If in step 1 i use J2SE, then everything is working great. Is there a 3rd party class that can be used to convert image-to-byte[] and back ? Or maybe another option.

Thanks,
Alex
 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi, please visit any of these 3 links :

webpage


webpage2

webpage3

Hope so that these links will help you:)
 
Alex Parvan
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you, i did it.

If anyone else needs something like this, here is the complete code:
Image to byte[] (only for J2ME):


byte[] to Image (only for J2SE):
 
reply
    Bookmark Topic Watch Topic
  • New Topic