程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> .NET:InTheHand提供的類操作SMS

.NET:InTheHand提供的類操作SMS

編輯:關於.NET

由於需要催手機裡的短消息(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();

          }

      }
    }
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved