-
-
Save smallnest/5a3d490562084983abc0ba7dc627744d to your computer and use it in GitHub Desktop.
演示golang转编码 (gb2312 --> utf8)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
iconv "github.com/djimenez/iconv-go" | |
"io/ioutil" | |
"log" | |
"net/http" | |
) | |
func main() { | |
log.SetFlags(log.LstdFlags | log.Lshortfile) | |
resp, err := http.Get("http://data.earthquake.cn/datashare/globeEarthquake_csn.html") | |
if err != nil { | |
log.Fatal(err) | |
} | |
defer resp.Body.Close() | |
input, err := ioutil.ReadAll(resp.Body) | |
out := make([]byte, len(input)) | |
out = out[:] | |
iconv.Convert(input, out, "gb2312", "utf-8") | |
ioutil.WriteFile("out.html", out, 0644) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment