我已经设置了一个广播接收器来捕获 SMS 消息。该类使用 Toast 显示消息,但我需要将字符串写入文件,但因为它不是 Activity,所以它不起作用。
有没有办法可以将“短信”字符串写入广播接收器中的文件?
如果没有,任何人都可以想到另一种方法来将 SMS 消息保存到文件而不在收到短信时运行应用程序?
public class SMSReciever extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent){
//---get the SMS message passed in---
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if (bundle != null)
{
//---retrieve the SMS message received---
Object[] pdus = (Object[]) bundle.get("pdus");
msgs = new SmsMessage[pdus.length];
for (int i=0; i<msgs.length; i++){
msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
str += SMS from " + msgs[i].getOriginatingAddress();
str += " :";
str += msgs[i].getMessageBody().toString();
str += "\n";
}
//---display the new SMS message---
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
//---Save SMS message---
SaveMessage(str);
}
}
public void SaveMessage(String message) {
FileOutputStream FoutS = null;
OutputStreamWriter outSW = null;
try {
FoutS = openFileOutput("Message.dat", MODE_PRIVATE);
outSW = new OutputStreamWriter(FoutS);
outSW.write(message);
outSW.flush();
}
catch (Exception e) {
e.printStackTrace();
}
finally {
try {
outSW.close();
FoutS.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
语法错误“MODE_PRIVATE 无法解析为变量”
- 代码仅在活动类中使用时有效
清单文件:
<receiver android:name=".SMSReciever">
<intent-filter>
<action android:name=
"android.provider.Telephony.SMS_RECEIVED"
android:enabled="true" />
</intent-filter>
</receiver>
这是我的第一篇文章,所以我希望我做的一切都是正确的,在此先感谢这个网站已经帮助了我很多。