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

I am developing a project that exchanges data between client and server. I have coded it in J2SE but I don't know how to make it work in J2ME?

share|improve this question

1 Answer

up vote 5 down vote accepted

Unless you're in need for something highlevel, just use plain sockets. Here are some links to get you started:

share|improve this answer
1  
Note, however, that sockets are not available on all devices. Many carriers block connections to anything but port 80 (for HTTP) or port 443 (for HTTPS). If you want something truly portable, use HTTP as your transport, not raw sockets. – Eric Giguere Feb 9 '11 at 12:46

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.