tags:

views:

454

answers:

3

How to send MMS in J2ME?

+1  A: 

See JSR 205.

Here's a sample code at Java Tips.

Obviously the handset and service provider have to support MMS...

Last link, a more descriptive piece on J2ME MMS.

HTH

martin clayton
Thanks a lot for your understandingI hoped that I could vote up for you but it requires 15 reputation :)
Ali El-sayed Ali
You're welcome - I see you've made it to 15 ;) Looking at your profile I notice you've not accepted any answers yet - you can do that by clicking on the outlined checkmark next to the answer you want to accept. See the faq link next to the search box at the top right of the SO page.
martin clayton
Thnx man, I accepted the answer
Ali El-sayed Ali
+1  A: 

Martin Clayton's answer is correct except it's actually JSR 205 you need for MMS.

funkybro
Thanks for the fix.
martin clayton
A: 

As with all good things in Java Mobile remember to test on your target handsets, some over achieving device manufacturers have limited the payload to a max size of 32kb, which you might find tricky if you are sending images or video

kgutteridge