|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
老师好 看看下面的程序哪里出了问题 为什么下载不到验证码
{
CInternetSession session;
CString strUrl;
CFile *pFile,out;
char buff[512];
CString strPath;
// 产生八位随机数数组成验证码
int nRand1 = rand()%100000+10000;
int nRand2 = rand()%200000+10000;
strUrl.Format("http://www.mykh.net/misc.php?mod=seccode&update=46130&idhash=cSAdJ6MHh",nRand1,nRand2);
strPath = GetExePath()+ "\\123" ;
pFile = session.OpenURL(strUrl);
out.Open(strPath, CFile::modeCreate | CFile::modeWrite);
while(pFile->Read(buff,512)){
out.Write(buff,512);
}
out.Flush();
out.Close();
}
还有这段代码什么意思
int nRand1 = rand()%100000+10000;
int nRand2 = rand()%200000+10000;
有好心的 求完整的实例
|
|