이 름 : 바다아이
|
조회수 : 11655
짧은 주소 : https://www.bada-ie.com/su/?41591782052
패키지 가져오시구요...go get github.com/djimenez/iconv-go사용시...import (
iconv "github.com/djimenez/iconv-go"
)
예제...Converting string Values1.
output,_ := iconv.ConvertString("Hello World!", "utf-8", "windows-1252")
2.
converter := iconv.NewConverter("utf-8", "windows-1252")
output,_ := converter.ConvertString("Hello World!")
// converter can then be closed explicitly// this will also happen when garbage collected
converter.Close()
Converting []byte Values1.
in := []byte("Hello World!")
out := make([]byte, len(input))
bytesRead, bytesWritten, err := iconv.Convert(in, out, "utf-8", "latin1")
2.
...
converter := iconv.NewConverter("utf-8", "windows-1252")
bytesRead, bytesWritten, error := converter.Convert(input, output)
Converting an *io.Reader// We're wrapping stdin for simplicity, but a File or network reader could// be wrapped as well
reader,_ := iconv.NewReader(os.Stdin, "utf-8", "windows-1252")
Converting an *io.Writer// We're wrapping stdout for simplicity, but a File or network reader could// be wrapped as well
writer,_ := iconv.NewWriter(os.Stdout, "utf-8", "windows-1252")
출처 : https://github.com/djimenez/iconv-go
|
|
번 호
카테고리
제 목
이름
조회수
Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천 실행시간 : 0.07342 초 to webmaster... gogo sea. gogo sea.