How are sms stored in any phones?

2019-08-25 04:17发布

I just wanted to know how all the sms in the phone stored internally?? and how do i access this internal files?

标签: java java-me sms
3条回答
乱世女痞
2楼-- · 2019-08-25 04:54

Have a look at the Wammu project. It can access phonebooks, SMS, calendars, etc. on many cell phone types.

查看更多
放我归山
3楼-- · 2019-08-25 05:12

Text files in older phones while newer ones may use light weight databases. (Details about Android and iOS in zengr's answer.)

If possible you can browse the file system on your phone. It the phone does not allow that then you will probably have to root it.

查看更多
我只想做你的唯一
4楼-- · 2019-08-25 05:16

It depends on various flavors of phone OSs like Symbian, android, iOS

For example: Android saves its SMS's in /data/data/com.android.providers/telephony/databases/mmssms.db iPhone also used SQLite database internally. /var/root/Library/SMS/sms.db

It's a lightweight embedded SQLite database.

查看更多
登录 后发表回答