Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app in Android that use communication by MulticastSocket. I want to write similar app in J2ME with communication Android <-> J2ME through WiFi using MulticastSocket. The problem is that in J2ME not exitsts MulticastSocket. There is only DatagramSocket. Can I manage with this problem using DatagramSocket?

share|improve this question

1 Answer

up vote 0 down vote accepted

No you can't. You cannot join a multicast group with a DatagramSocket. Ergo you can send to a multicast group, but not receive from one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.