博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go httpclient
阅读量:5945 次
发布时间:2019-06-19

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

hot3.png

package mainimport (	"fmt"	"io/ioutil"	"net/http")func main() {	// response, _ := http.Get("http://www.baidu.com")	// defer response.Body.Close()	// body, _ := ioutil.ReadAll(response.Body)	// fmt.Println(string(body))	client := &http.Client{}	request, _ := http.NewRequest("GET", "http://192.168.4.104:8800", nil)	request.Header.Set("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")	request.Header.Set("Accept-Charset", "GBK,utf-8;q=0.7,*;q=0.3")	request.Header.Set("Accept-Encoding", "gzip,deflate,sdch")	request.Header.Set("Accept-Language", "zh-CN,zh;q=0.8")	request.Header.Set("Cache-Control", "max-age=0")	request.Header.Set("Connection", "keep-alive")	response, _ := client.Do(request)	if response.StatusCode == 200 {		body, _ := ioutil.ReadAll(response.Body)		bodystr := string(body)		fmt.Println(bodystr)	}}

 

转载于:https://my.oschina.net/jackhen/blog/799077

你可能感兴趣的文章
hihoCoder #1078 : 线段树的区间修改(线段树区间更新板子题)
查看>>
php 接口与前端数据交互实现
查看>>
Python多线程运行带多个参数的函数
查看>>
[WF4.0 实战] 事件驱动应用
查看>>
关于”nodejs基于事件驱动”的思考
查看>>
nyoj-20-吝啬的国度(深搜)
查看>>
css hack原理
查看>>
C++关键字之friend
查看>>
ORACLE-SQL(一)
查看>>
http://blog.csdn.net/renfufei/article/details/37725057/
查看>>
maven学习一(HelloWorld工程)
查看>>
C++课程设计类作业4
查看>>
dede列表标签list:应用大全 {dede:list}
查看>>
ios in-house 公布整个过程(startssl认证)
查看>>
Thumb指令集与ARM指令集的差别
查看>>
面试-----关于海量数据问题的处理具体解释
查看>>
OL记载Arcgis Server切片
查看>>
JavaScript表单验证
查看>>
android 随手记之文件+參数上传请求
查看>>
后台进程管理工具---supervisor
查看>>