I am trying to read SMS (to start off with) that are stored in my Android phone, from a Win 7 machine. I am yet to figure out the API/Interface that I can/should use. I am okay with whatever language it is going to be. Hope someone can point me in the right direction. It need not be as straight as an API. I am okay with some sort of hacks also.
2 に答える
2
私が考えた2つの解決策があります、
お使いの携帯電話が の場合
rooted
、 を使用adb pull
して を入手してください。パッケージSMS Database
に入っていますContacts
BroadcastReceiver
新しいメッセージをリッスンする Android アプリケーションを作成します。新しいものが来たら、その情報をファイルに書き留めます。adb
このファイルを取得するために使用します。
于 2012-08-19T04:00:01.637 に答える
0
メッセージを読み取るための API はないと思います。
多分あなたはこれを行うことができます。
Localsocket を開いてリッスンするアプリを作成します。次に、adb を介して、Windows 7 からこの同じソケットを開く必要があります。このソケットを介してデータを転送する必要があります。
于 2012-08-18T18:29:39.380 に答える