0

Possible Duplicate:
How can I read SMS messages from the inbox programmatically in Android?

I'm trying to build a program that extracts SMS from android devices through a java program. Does anyone know an API that does this?

I'm aware the SMS (the backups anyway) are stored in a database so I was hoping to find this database on the phone, extract it and then load it into a database.

Community
  • 1
  • 1
Steven Mclaren
  • 275
  • 2
  • 6
  • 13

2 Answers2

1

Check the following link.

http://www.apriorit.com/our-company/dev-blog/227-handle-sms-on-android

0

Manas provided a good link.

Here is another one that I used.

http://www.androidcompetencycenter.com/2008/12/android-api-sms-handling/ is broken => try via archive.org

I think you are referring to reading the database. If so,then this question is a repost, see here:

How can I read SMS messages from the device programmatically in Android?

Community
  • 1
  • 1
wseme
  • 805
  • 6
  • 14
  • Thanks for links. Just want to write a desktop java application that'll extract SMS from android and print them to a relational database. I'm expecting some sort of encryption is place. – Steven Mclaren Oct 11 '12 at 15:52