Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个读取 SMS 收件箱的应用程序,但我想查看包含所有 SMS 消息的 SQL 数据库(作为管理员)的详细信息。我正在使用 Eclipse 开发应用程序,并且所有的工作都在应用程序中,但是我在哪里可以找到数据库?什么是访问它的好方法?使用 Windows 8 作为我的开发平台
如果您使用 API-10 的模拟器,您可以在 /data/data/com.android.providers.telephony/databases/mmssms.db 中找到 sms 数据库,您可以使用 android 的文件浏览器工具浏览它。将其保存到您的位置并浏览它通过sqlite数据库浏览器。数据库包含许多表sms,thread,mms等。如果您想以编程方式访问,您可以使用 sms 的内容提供者 (content://sms/inbox)。