Go 获取网页内容

为什么80%的码农都做不了架构师?>>>   hot3.png

// http.go
package main

import (
	"fmt"
	"io"
	"net/http"
	"os"
)

func main() {
	resp, err := http.Get("http://www.oschina.net")
	if err != nil {
		fmt.Println("Get http://www.oschina.net error: ", err.Error())
		return
	}
	defer resp.Body.Close()
	io.Copy(os.Stdout, resp.Body)
}

输出结果:

    略

转载于:https://my.oschina.net/tsh/blog/894357

你可能感兴趣的:(Go 获取网页内容)