Skip to content

Instantly share code, notes, and snippets.

View flydo's full-sized avatar
💭
I may be slow to respond.

扉度 flydo

💭
I may be slow to respond.
View GitHub Profile
@flydo
flydo / gbkbig5.go
Created May 21, 2019 06:28 — forked from zhang0098/gbkbig5.go
Golang GBK Big5 from/to UTF-8 转换
import (
"bytes"
"io/ioutil"
"golang.org/x/text/encoding/traditionalchinese"
"golang.org/x/text/encoding/simplifiedchinese"
"golang.org/x/text/transform"
)
//convert GBK to UTF-8
func Decodegbk(s []byte) ([]byte, error) {
I := bytes.NewReader(s)