|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我也不知道,我原来理解的,NET就是C++编程,只是与JAVA相对,呵呵。以为.ET就是高级C++编程。 因为必要催手机里的短动静(SMS)举行操纵,现成的API都不克不及便利的完成,看到最好用的要数InTheHand这家第三方控件了,真的很便利,可是这个版本是贸易版($49),公布的试用版不撑持这个类的,够忧郁的。
实在次要就是使用SmsMessageFolder这个类,哎,有无甚么好举措能够替换它呢?为何微软不供应操纵SMS的API呢?大概鄙人个版本中会供应吧,希望吧!!
帖段利用SmsMessageFolder类的代码,以下显现就是备份后再删除的功效,真便利!!
PS:InTheHand这家网站的路径不当心被我暴出来了:
Fatalerror:Maximumexecutiontimeof30secondsexceededin
C:Inetpubwwwrootinthehandorumsincludesemplate.php(127):eval()dcodeonline31
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
usingSystem.IO;
usingInTheHand.WindowsMobile.PocketOutlook;
namespaceDumpSMS
......{
classProgram
......{
privateconststringFILE_NAME="sms.txt";
staticvoidMain(string[]args)
......{
if(!File.Exists(FILE_NAME))
......{
OutlookSessionoutSess=newOutlookSession();
SmsMessageFoldersmsFlr=outSess.SmsAccount.Inbox;
if(smsFlr.Count>0)
......{
//Onlysavethefirstsmsfound
SmsMessagesmsMsg=smsFlr[0];
if(smsMsg.Body.Length>0)
......{
StreamWriterwriteStream=File.CreateText(FILE_NAME);
writeStream.WriteLine(smsMsg.Body);
writeStream.Close();
}
smsMsg.Delete();
}
}
}
}
}
可怜的程序员,还是逃不出移植的命运! |
|