我已设置广播接收器来捕获短信。 Class使用Toast显示消息,但是我需要将String写入文件,但因为它不是Activity,所以它不起作用。
有没有办法可以将“sms message”字符串写入广播接收器中的文件?
如果没有人可以想到另一种方法将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>
这是我的第一篇文章,所以我希望我做的一切都正确,在此先感谢这个网站已经帮助了我很多。
答案 0 :(得分:2)
尝试将context
传递给SaveMessage
...
SaveMessage(context, str);
...并按以下方式更改您的SaveMessage
方法......
public void SaveMessage(Context context, String message) {
FileOutputStream FoutS = null;
OutputStreamWriter outSW = null;
try {
FoutS = context.openFileOutput("Message.dat", Context.MODE_PRIVATE);
// Rest of try block here
}
// 'catch' and 'finally' here
}
答案 1 :(得分:0)
您可以使用以下方法获取数据的应用程序专用File对象:
File outFile = new File(getExternalFilesDir(null), "DemoFile.jpg");
(使用Context
中传递的onReceive
对象。)然后,您可以使用java.io
中的标准类打开并写入它:
Writer writer = new FileWriter(outFile);
. . .
卸载应用程序时,将删除外部文件目录中的文件。
答案 2 :(得分:0)
您无权写入SD卡。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
这里有一个很好的代码示例 http://androidgps.blogspot.com/2008/09/writing-to-sd-card-in-android.html
但是,我不会写入SD卡的根目录。写入/ data / [application package] /
是一种很好的做法将[application package]替换为您的软件包,例如:com.example.helloandroid