Rumah >php教程 >php手册 >Golang下gb2312转UTF8并输出到文件

Golang下gb2312转UTF8并输出到文件

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBasal
2016-06-06 19:31:493555semak imbas

找将字符串输出到文件的示例,搜到此段代码。 无 源码与演示: 源码出处 package mainimport ( iconv "github.com/djimenez/iconv-go" "io/ioutil" "log" "net/http" )func main() { log.SetFlags(log.LstdFlags | log.Lshortfile) resp, err := http.Get("ht

找将字符串输出到文件的示例,搜到此段代码。

源码与演示:源码出处

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)
}
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn