csdn10年中间经典帖子

源代码在线查看: csdn_文档中心_c++通过http下载二进制文件.htm

软件大小: 5861 K
上传用户: chengshengwu123
关键词: csdn 10
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				CSDN_文档中心_C++通过http下载二进制文件
				
								href="CSDN_文档中心_C++通过http下载二进制文件.files/csdn.css" rel=stylesheet>
				
				
				.title0 {
					COLOR: #ffffff; FONT-FAMILY: arial; FONT-SIZE: 17px; FONT-WEIGHT: bold; TEXT-DECORATION: none
				}
				A.title2:link {
					COLOR: #000000; TEXT-DECORATION: none
				}
				A.title2:visited {
					COLOR: #000000; TEXT-DECORATION: none
				}
				A.title2:active {
					COLOR: #ff0000; TEXT-DECORATION: none
				}
				A.title2:hover {
					COLOR: #ff0000; TEXT-DECORATION: none
				}
				
				
				
								function submitlog(sign)
				{
					var types=document.alogon.type.options[document.alogon.type.selectedIndex].value;				
					if (document.alogon.name.value!="" && document.alogon.pass.value!="")
					{
						if (types!="1")
							document.alogon.action="http://www.csdn.net/member/logon.asp";
						else
							document.alogon.action="http://expert.csdn.net/member/logon.asp";
						if(sign)
							document.alogon.submit();
						//return true;
					}
					else
					{
						if (document.alogon.name.value=="")
							alert("请输入用户名!");
						if (document.alogon.pass.value=="")
							alert("请输入密码");
						return false;
					}
					return true;
				}
				function GetMyPass()
				{
					if (document.alogon.name.value!="")
					{
						document.alogon.action="http://www.csdn.net/member/getpass.asp";
						document.alogon.submit();
					}
					else
					{
						alert("请在姓名输入框里输入用户名或注册EMAIL!");
					}	
				}
				// -->
				
				
				
				  
				  
				    
				       				      href="http://www.csdn.net/member/login.asp">登 
				      录..    				      target=_blank>[注 册]    				      href="http://www.csdn.net/member/login.asp">				      color=#ffff33>忘记密码    				      href="http://www.csdn.net/member/logonout.asp">				      color=#ffff33>注销登录 
				    				      src="CSDN_文档中心_C++通过http下载二进制文件.files/top_1.gif" width=20>
				    
				    				      color=#ffffff> 				      class=FormText_1 name=type> 新闻标题 
				        软件名称 商品名称 				        value=4>文档标题 职位名称   
				    
				
				  
				  
				    				      src="CSDN_文档中心_C++通过http下载二进制文件.files/csdn.gif" width=120>
				    
				      
					var rand = Math.random().toString(); 
					var ordval = parseInt(rand.substring(2,4)); 
					function Showad(width)
					{
						if(width=='468')
						{
								document.write("  ");
								return;
						}
						if(width=='120')
						{
								document.write("");
								return;
						}
						return;
					}
				Showad('468')
				    
				    
				      Showad('120')
				    
				
				  
				  
				    
				  
				    				      class=title0>csdn.net
				    
				      
				    
				  
				    				  width=770>
				
				  
				  
				    
				    
				      				      scrollDelay=80>
				      
				      
				    
				      document.write("");
				      
				      
														document.ns = navigator.appName == "Netscape"
							tmpDate = new Date();
							date = tmpDate.getDate();
							month= tmpDate.getMonth() + 1 ; 
							if(document.ns)
							{
								year1=tmpDate.getYear()
								year= year1.toString().substr(1,2);
							}
							else
								year= tmpDate.getYear();
							
							document.write(year);
							document.write(".");
							document.write(month);
							document.write(".");
							document.write(date);
							// -->
							
				        
				  
				    
				
				  
				  
				    
				      
				    
				    
				      
				        
				        
				          
				          CSDN - 				            href="http://www.csdn.net/develop/">文档中心 - 				            color=#003399>Visual C++     
				        
				          
				          
				        
				          				            color=#ffffff>标题
				              C++通过http下载二进制文件    zlyperson(原作) 
				          
				        
				          
				          
				        
				          关键字
				              C++
				        
				          
				          
				      
				        
				        
				          
				            最近做了个动态库的升级程序,需要到服务器检查是否有新版本的动态库如果有的话就下载下来升级。这里与大家分享我的测试下载该二进制文件的过程。如下:
				            #include <stdio.h>#include 
				            <windows.h>#include <wininet.h>#define 
				            MAXBLOCKSIZE 1024
				            void download(const char*);
				            int main(int argc, char* argv[]){ if(argc > 
				            1){  download((const 
				            char*)argv[1]); }else{  printf("Usage: 
				            auto-Update url"); } return 0;}
				            /** * 执行 文件下载 操作 * @param Url: The target 
				            action url  * */void download(const char 
				            *Url){ HINTERNET hSession = InternetOpen("RookIE/1.0", 
				            INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0); if (hSession 
				            != NULL) {  HINTERNET handle2 = 
				            InternetOpenUrl(hSession, Url, NULL, 0, INTERNET_FLAG_DONT_CACHE, 
				            0);  if (handle2 != 
				            NULL)  {   printf("%s\n",Url);   byte 
				            Temp[MAXBLOCKSIZE];   ULONG Number = 1;
				               FILE *stream;   if( (stream 
				            = fopen( "F:\\LeadBridge\\new.exe", "wb" )) != NULL 
				            )//这里只是个测试,因此写了个死的文件路径   {    while 
				            (Number > 
				            0)    {     InternetReadFile(handle2, 
				            Temp, MAXBLOCKSIZE - 1, 
				            &Number);     //fprintf(stream, 
				            (const char*)Temp);     fwrite(Temp, 
				            sizeof (char), Number , 
				            stream);    }    fclose( 
				            stream 
				            );   }      InternetCloseHandle(handle2);   handle2 
				            = 
				            NULL;  }  InternetCloseHandle(hSession);  hSession 
				            = NULL; }}
				            这应该是整个下载文件的核心过程了,以前看了很多资料,都写得非常丰富。希望也有更多的追求精小的同道中人^_^
								width=770>
				  
				  
				    				    color=#ffffff>对该文的评论
				    
				      
				    
								width=770>
				  
				  
				    				      hspace=1 src="CSDN_文档中心_C++通过http下载二进制文件.files/ico_pencil.gif" width=16> 
				           flyingbat2 (2004-5-8 16:03:32) 
				  
				  
				    我也是一个追求精小 
				
								width=770>
				  
				  
				    				      hspace=1 src="CSDN_文档中心_C++通过http下载二进制文件.files/ico_pencil.gif" width=16> 
				           jacklee19822001 (2004-5-8 1:19:54) 
				    
				  
				    				      width=532>利用wininet,怎么得到Redirected后的URL呢? 
				
								width=770>
				  
				  
				    				color=#ffffff>我要评论
				
				
				  
				  
				    你没有登陆,无法发表评论。 请先				      href="http://www.csdn.net/member/login.asp?from=/Develop/read_article.asp?id=27307">登陆 
				      				href="http://www.csdn.net/expert/zc.asp">我要注册
				
				
				
				  
				  
				    				      href="http://www.csdn.net/intro/intro.asp?id=2">网站简介 - 				      href="http://www.csdn.net/intro/intro.asp?id=5">广告服务 - 				      href="http://www.csdn.net/map/map.shtm">网站地图 - 				      href="http://www.csdn.net/help/help.asp">帮助信息 - 				      href="http://www.csdn.net/intro/intro.asp?id=2">联系方式 - 				      href="http://www.csdn.net/english">English 
				    				      href="http://www.hd315.gov.cn/beian/view.asp?bianhao=010202001032100010">				      border=0 height=48 src="CSDN_文档中心_C++通过http下载二进制文件.files/biaoshi.gif" 
				      width=40>
				  
				    百联美达美公司 版权所有 京ICP证020026号
				  
				    Copyright © CSDN.net, Inc. All rights 
				      reserved
				  
				    
				    
				
							

相关资源