国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
HTTP/FTP客戶端開(kāi)發(fā)庫(kù)

2013.02

from http://blog.chinaunix.net/uid-25885064-id-3487145.html

網(wǎng)頁(yè)抓取和ftp訪問(wèn)是目前很常見(jiàn)的一個(gè)應(yīng)用需要,無(wú)論是搜索引擎的爬蟲(chóng),分析程序,資源獲取程序,WebService等等都是需要的,自己開(kāi)發(fā)抓取庫(kù)當(dāng)然是最好了,不過(guò)開(kāi)發(fā)需要時(shí)間和周期,使用現(xiàn)有的Opensource程序是個(gè)更好的選擇,一來(lái)別人已經(jīng)寫(xiě)的很好了,二來(lái)自己使用起來(lái)非??焖?,三來(lái)還能夠?qū)W習(xí)一下別人程序的優(yōu)點(diǎn)。


libwww
官方網(wǎng)站:http://www.w3.org/Library/
更多信息:http://www.w3.org/Library/User/
運(yùn)行平臺(tái):Unix/Linux,Windows

Libwww 是一個(gè)用C語(yǔ)言寫(xiě)成的高度模組化用戶端的網(wǎng)頁(yè)存取API 。


libcurl

官方網(wǎng)站:http://curl.haxx.se/libcurl
更多特點(diǎn):http://curl.haxx.se/docs/features.html
運(yùn)行平臺(tái):Unix/Linux,Windows


libcurl為一個(gè)免費(fèi)開(kāi)源的,客戶端url傳輸庫(kù),支持FTP,FTPS,TFTP,HTTP,HTTPS,GOPHER,TELNET,DICT,FILELDAP,跨平臺(tái)(支持 Windows,UnixLinux等),線程安全,支持Ipv6,并且易于使用。


libfetch
官方網(wǎng)站:http://libfetch.darwinports.com/
更多信息:http://www.freebsd.org/cgi/man.cgi?query=fetch&sektion=3
運(yùn)行平臺(tái):BSD


HTTP/FTP客戶端庫(kù)】
資料來(lái)源:http://curl.haxx.se/libcurl/competitors.html

Free Software and Open Source projects have a long tradition offorks and duplicate efforts. We enjoy "doing it ourselves",no matter if someone else has done something very similar already.Free/open libraries that cover parts of libcurl's features:

libcurl (MIT)

ahighly portable and easy-to-use client-side URL transfer library,supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TELNET, DICT, FILE,TFTP and LDAP. libcurl also supports HTTPS certificates, HTTP POST,HTTP PUT, FTP uploading, kerberos, HTTP form based upload, proxies,cookies, user+password authentication, file transfer resume, httpproxy tunnelling and more!

libghttp (LGPL)

Havinga glance at libghttp (a gnome http library), it looks as if it worksrather similar to libcurl (for http). There's no web page for thisand the person who's email is mentioned in the README of the latestrelease I found claims he has passed the leadership of the project to"eazel". Popular choice among GNOME projects.

libwww (W3Clicense) comparisonwith libcurl

Morecomplex, and and harder to use than libcurl is. Includes everythingfrom multi-threading to HTML parsing. The most notabletransfer-related feature that libcurl does not offer but libwww does,is caching.

libferit (GPL)

C++library "for transferring files via http, ftp, gopher, proxyserver". Based on 'snarf' 2.0.9-code (formerly known aslibsnarf). Quote from freshmeat:  "As the author of snarf, I have to say this frightens me.Snarf's networking system is far from robust and complete. It'sprobably full of bugs, and although it works for maybe 85% of allcurrent situations, I wouldn't base a library on it."

neon (LGPL)

AnHTTP and WebDAV client library, with a C interface. I've mainly heardand seen people use this with WebDAV as their main interest.

(LGPL) comparisonwith libcurl

Partof glib (GNOME). Supports: HTTP 1.1, Persistent connections,Asynchronous DNS and transfers, Connection cache, Redirects, Basic,Digest, NTLM authentication, SSL with OpenSSL or Mozilla NSS, Proxysupport including SSL, SOCKS support, POST data. Probably not veryportable. Lacks: cookie support, NTLM for proxies, GSS, gzipencoding, trailers in chunked responses and more.

mozillanetlib (MPL)

HandlesURLs, protocols, transports for the Mozilla browser.

mozillalibxpnet (MPL)

Minimaldownload library targeted to be much smaller than the above mentionednetlib. HTTP and FTP support.

wget (GPL)

Whilenot a library at all, I've been told that people sometimes extractthe network code from it and base their own hacks from there.

libfetch (BSD)

DoesHTTP and FTP transfers (both ways), supports file: URLs, and an APIfor URL parsing. The utility  fetch  thatis built on libfetch is an integral part of the  FreeBSD  operatingsystem.

HTTPFetcher (LGPL)

" a small, robust, flexible library for downloading files via HTTPusing the GET method. "

http-tiny (Artistic License)

" a very small C library to make http queries (GET, HEAD, PUT,DELETE, etc.) easily portable and embeddable "

XMLHTTPObject also known as IXMLHTTPRequest (part of MSXML 3.0)

(Windows)Provides client-side protocol support for communication with HTTPservers. A client computer can use the XMLHTTP object to send anarbitrary HTTP request, receive the response, and have the Microsoft?XML Document Object Model (DOM) parse that response.

QHttp (GPL)

QHttpis a class in the Qt library from Troll Tech. Seems to be restrictedto plain HTTP. Supports GET, POST and proxy. Asynchronous.

ftplib (GPL)

" a set of routines that implement the FTP protocol. They allowapplications to create and access remote files through function callsinstead of needing to fork and exec an interactive ftp clientprogram."

ftplibpp (GPL)

AC++ library for "easy FTP client functionality. It featuresresuming of up- and downloads, FXP support, SSL/TLS encryption, andlogging functionality."

GNUCommon C++ library

Hasa URLStream class. This C++ class allow you to download a file usingHTTP. See demo/urlfetch.cpp in commoncpp2-1.3.19.tar.gz

HTTPClient (LGPL)

JavaHTTP client library.

JakartaCommons HttpClient (Apache License)

AJava HTTP client library written by the Jakarta project.

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開(kāi)APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
PycURL Home Page
CURL詳解
Windows下用vs2017編譯和配置libcurl庫(kù)(手把手教,適合新人)
python使用pycurl模塊詳解
curl的基本使用及l(fā)ibcurl
Py之pycurl:Python 庫(kù)之pycurl的簡(jiǎn)介、安裝、使用方法之詳細(xì)攻略
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服