--獲得安裝包,從網上直接下載或者其他途徑,這裡直接wget
# wget http://curl.haxx.se/download/curl-7.17.1.tar.gz
--解壓到當前目錄
# tar -zxf curl-7.17.1.tar.gz
--進入解壓後的目錄內
# cd curl-7.17.1
--配置,指定安裝的目錄,這裡是“/usr/local/curl”
# ./configure --prefix=/usr/local/curl
--
# make
--安裝
# make install
--安裝完畢
使用:
將curl命令加入環境變量,
命令行裡執行(僅對本會話起作用,或者在.bash_profile、.bashrc文件裡配置環境變量):
# export PATH=$PATH:/usr/local/curl/bin
然後就可以使用了
# curl http://www.baidu.com
出來好多html代碼,是百度首頁的代碼
入門的使用說明:
http://www.javaeye.com/topic/648143
-------------------------------------------------------------------------------------------
使用實例(發送POST請求):
# curl -d @json http://www.google.com/loc/json
-d —— 是以POST形式發送請求
@json —— @是從文件中讀取數據,json文件中的內容為{"address_language":"zh_CN","cell_towers":[{"cell_id":"36526","location_area_code":"14556","mobile_contry_code":"460","mobile_network_code":"02"}],"host":"maps.google.com","location":null,"request_address":true,"version":"1.1.0","wifi_towers":[]}
返回:
{"location":{"latitude":32.117302,"longitude":114.116598,"address":{"country":"中國","country_code":"CN","region":"河南省","city":"信陽市"},"accuracy":1625.0},"access_token":"2:FaXK0Xl_DHRbcQiK:5tGTJsZx1scpjUfJ"}
本欄目更多精彩內容:http://www.bianceng.cn/OS/Linux/