views:

334

answers:

1

I want to make program it's can send sms to person in other country. I heard using sms gateway international can do it, and cheap (or maybe free). So, i want to know the best library for it . Thx i'm using netbean 6.5 for making program.

+1  A: 

There are a couple of options:

1) Use a java library such as smslib, which allows direct communication with a mobile phone modem to send or receive messages.

2) Register with one of the SMS gateway providers such as Clickatell or csoft and use their supplied apis. I would start by looking at the HTTP api here and here.

A number of similar previous questions have covered this topic:

Programmatic SMS
How do I implement an SMS service?
Sending SMS

Rich