由於需要催手機裡的短消息(SMS)進行操作,現成的API都不能方便的實現,看到最好用的要數InTheHand這家第三方控件了,真的很方便,但是這個版本是商業版($49),發布的試用版不支持這個類的,夠郁悶的。
其實主要就是利用SmsMessageFolder 這個類,哎,有沒有什麼好辦法可以替代它呢?為什麼微軟不提供操作SMS的API呢?也許在下個版本中會提供吧,但願吧!!
帖段使用SmsMessageFolder 類的代碼,如下顯示就是備份後再刪除的功能,真方便!!
PS:InTheHand這家網站的路徑不小心被我暴出來了:
Fatal error: Maximum execution time of 30 seconds exceeded in
C:Inetpubwwwrootinthehand orumsincludes emplate.php(127) : eval()'d code on line 31
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using InTheHand.WindowsMobile.PocketOutlook;
namespace DumpSMS
......{
class Program
......{
private const string FILE_NAME = "sms.txt";
static void Main(string[] args)
......{
if (!File.Exists(FILE_NAME))
......{
OutlookSession outSess = new OutlookSession();
SmsMessageFolder smsFlr = outSess.SmsAccount.Inbox;
if (smsFlr.Count > 0)
......{
// Only save the first sms found
SmsMessage smsMsg = smsFlr[0];
if (smsMsg.Body.Length > 0)
......{
StreamWriter writeStream = File.CreateText(FILE_NAME);
writeStream.WriteLine(smsMsg.Body);
writeStream.Close();
}
smsMsg.Delete();
}
}
}
}
}