• 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

J2ME and SMS?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there,
I am a good programmer in JAVA,but J2ME is new for me. Nowadays I am preaparing to study the master but to determine the topic exactly I have to know some about J2ME and I don't have enough time to learn and get the ansewrs.I hope you will help me.I will be thanfull for you.
My quistion is can J2ME recieve SMS and deal with its contenet as variable and use it in the program?
I hope you got my Q.
 
Ranch Hand
Posts: 87
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi there
first thing you need for learning j2ME is you should have enough time and patience.All of us are programmers for whom 24 hrs.were not sufficient,still we
did not give up.

You can send & receive sms in your application.

mobileno = "09886312140" ;
yourmessage ="hai - how are you ? " ;

senderAddress = "sms://:" + mobileno ;

clientConn = (MessageConnection) Connector.open(senderAddress);

clientConn.send(yourmessage);



Regards

Gopinath
http://j2me-codesamples.blogspot.com/










 
reply
    Bookmark Topic Watch Topic
  • New Topic