Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need a Java API that i can use to receive and send SMS messages. I already know of SMSLIB, but am wondering if there is a better one out there.
What I found are the following links. They are simple sample code and only for sms receive and send from GSM modem via com port. Easy to modify and use them in own program. They are not like SMSLib(so many features but need a few third parties library and complex to use(at least for me)).
h t t p://blog.jservlet.com/post/2008/01/27/Object-SMS-send-and-receive-SMS-from-GSM-card-SIM-with-JAVA-Communication-API
h t t p://www.java-samples.com/showtutorial.php?tutorialid=22
h t t p://sourceforge.net/projects/java-sms-api/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hello I have an Arduino UNO connected to its LCD display. I programmed it to display any text you want by sending serial text to it. I have been Google Searching ways to do this but I haven't seemed to find a way for sending serial in java.
I am looking for an API or someway to possibly send serial text to my Arduino via USB. I chose java because I am more familiar with it.
Try RXTX Java library, it's a java serial communication library and works great with Arduino. Also the official Arduino website provides an example for Java-Arduino communication with help of this library, see here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am trying to create an application that recognizes a user and replies to him based on his input . I am not bale to find any SDK or API library that does so.
Please let me know any one that i can start with. I tries nuance SDK, google voice ect.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am working on an embedded device which has Android OS on it, Its not a smartphone. I need to write a webserver in android for which I am using iJetty. I am planning to have service expose as REST webservice. For this I am looking at light weight REST server framework that I can use inside by apk file.
I did some research and found Restlets for Android
Do you know of any good light weight REST server framework that you would like to recommend?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I know there are many online tool available but I want to write in house tool, references or how to go about it? Or even it can be done or is a mammoth task?
You need to have a location database of all IP addresses. So, either you build a database yourself (a genuinely mammouth task) or you use an external service.
Some IP location services have have APIs so you can call then from your code.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to make an application that can send an SMS to person in another country.
I have heard that using an international SMS gateway is the best way to do it, and is cheap (possibly even free).
What is the best library for achieving this?
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