博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言 HTTP上传文件-利用libcurl库上传文件
阅读量:6560 次
发布时间:2019-06-24

本文共 2892 字,大约阅读时间需要 9 分钟。

通常情况下,一般很少使用C语言来直接上传文件,但是遇到使用C语言编程实现文件上传时,该怎么做呢?

借助开源的libcurl库,我们可以容易地实现这个功能。Libcurl是一个免费易用的客户端URL传输库,主要功能是用不同的协议连接和沟通不同的服务器,libcurl当前支持DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP,IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet andTFTP。libcurl同样支持HTTPS证书授权,HTTP POST, HTTP PUT, FTP 上传, HTTP基本表单上传,代理,cookies,和用户认证等。下面借鉴libcurl官网的例子完成简单的文件上传。

模拟要实现的文件上传FORM:

 

File: FileName:

 

 

 

  1. <form action="fileUpload.action" method="post" enctype="multipart/form-data">    
  2.         File:<input type="file" name="sendfile" /><br>     
  3.         FileName:<input type="text" name="filename" /><br>     
  4.         <input type="submit" name="submit" value="Submit" />    
  5. </form> 

其中,fileUpload.action为文件处理文件上传的接口,根据实际需要配置,这里只是一个例子。

C语言HTTP上传文件的代码如下:

#include <stdio.h>  

#include <string.h>    

#include <curl/curl.h>

int main(int argc, char *argv[]) { CURL *curl; CURLcode res; struct curl_httppost *formpost=NULL; struct curl_httppost *lastptr=NULL; struct curl_slist *headerlist=NULL; static const char buf[] = "Expect:"; curl_global_init(CURL_GLOBAL_ALL); /* Fill in the file upload field */ curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "sendfile", CURLFORM_FILE, "D:\\sign.txt", CURLFORM_END); /* Fill in the filename field */ curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "filename", CURLFORM_COPYCONTENTS, "sign.txt", CURLFORM_END); /* Fill in the submit field too, even if this is rarely needed */ curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "submit", CURLFORM_COPYCONTENTS, "Submit", CURLFORM_END); curl = curl_easy_init(); /* initalize custom header list (stating that Expect: 100-continue is not wanted */ headerlist = curl_slist_append(headerlist, buf); if(curl) { /* what URL that receives this POST */ curl_easy_setopt(curl, CURLOPT_URL, "http://localhost:8080/fileUpload.action"); if ( (argc == 2) && (!strcmp(argv[1], "noexpectheader")) ) /* only disable 100-continue header if explicitly requested */ curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist); curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); /* Check for errors */ if(res != CURLE_OK) fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res)); /* always cleanup */ curl_easy_cleanup(curl); /* then cleanup the formpost chain */ curl_formfree(formpost); /* free slist */ curl_slist_free_all (headerlist); } return 0; }

代码经过测试,可以使用,但是需要提前配置好Libcur库,以及编译环境,这个自行google。代码很粗糙,功能很简单,只是起个抛砖引玉的作用,希望能对大家有所帮助。

来自:http://blog.csdn.net/sxwyf248/article/details/7984776

VC2013下,使用curl:

http://www.tuicool.com/articles/A73ARr

较细:http://blog.csdn.net/mjpassion/article/details/6290912

Visual2012:http://www.howzhi.com/course/3387/lesson/43112

参考:http://www.cppblog.com/len/archive/2008/06/21/54229.html

使用libcurl模拟form表单上传的问题:

http://bbs.csdn.net/topics/390817077

在C语言程序中使用cURL库(libcurl):

http://demon.tw/programming/c-libcurl.html

你可能感兴趣的文章
学习网页开发与网站设计必看的【代码逆袭】书
查看>>
Python 中文编码
查看>>
ubuntu-14.04编译安装PostgreSQL
查看>>
IAS的工作原理(二) 作为 RADIUS 代理的 IAS
查看>>
虽然离成功很遥远,33岁程序员提前感受退休在家看看孩子的日子
查看>>
shell脚本学习笔记系列--1
查看>>
RAC环境下做归档时出错ORA-29707
查看>>
Linux下载JDK1.7
查看>>
S2SH整合Shiro之:SessionContext must be an HTTP compatible implementation
查看>>
我的友情链接
查看>>
Hibernate 笔记
查看>>
ExtJS之 grid表格详解
查看>>
其他消息中间件及场景应用(上)
查看>>
新建文章 3
查看>>
实现图片的拷贝案例演示
查看>>
组策略——软件限制策略(完全教程与规则示例)
查看>>
最新Python笔试题2017 涵盖知识面广泛
查看>>
Docker学习笔记--CLI和Registry
查看>>
Vue 中scoped CSS 与深度作用选择器 /deep/
查看>>
支付宝扫码支付开发备忘
查看>>