Go를 사용하여 Windows 콘솔에서 UTF-8 문자열을 올바르게 출력하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-11-01 10:55:02
원래의
838명이 탐색했습니다.

How to Correctly Output UTF-8 Strings in a Windows Console with Go?

Go를 사용하여 Windows 콘솔에서 문자열을 올바르게 출력하기

특수 문자가 포함된 UTF-8 인코딩 문자열을 출력하는 Go 실행 파일을 생성할 때 기본 인코딩을 고려하는 것이 중요합니다. IBM850(코드 페이지 850)인 Windows 콘솔에서 사용됩니다. 이는 잘못된 문자 인코딩으로 인해 잘못된 출력으로 이어질 수 있습니다.

Windows 콘솔에서 올바른 출력을 보장하려면 다음 접근 방식을 구현할 수 있습니다.

<code class="go">package main

import (
    "syscall"
    "unsafe"
    "unicode/utf16"
)

// Retrieve a function pointer from the kernel32.dll library.
var procWriteConsoleW = syscall.NewProc("WriteConsoleW")

// Custom function to print strings directly to the console.
func consolePrintString(strUtf8 string) {
    // Encode the string into UTF-16 for Windows console compatibility.
    var strUtf16 []uint16
    strUtf16 = utf16.Encode([]rune(strUtf8))

    if len(strUtf16) < 1 {
        return
    }

    // Initialize the number of characters written to zero.
    var charsWritten uint32 = 0

    // Call WriteConsoleW to print the UTF-16 string to the console.
    syscall.Syscall6(procWriteConsoleW.Addr(), 5,
        uintptr(syscall.Stdout),
        uintptr(unsafe.Pointer(&strUtf16[0])),
        uintptr(len(strUtf16)),
        uintptr(unsafe.Pointer(&charsWritten)),
        uintptr(0),
        0)
}

func main() {
    // Example strings to output to the console.
    consolePrintString("Hello ☺\n")
    consolePrintString("éèïöîôùòèìë\n")
}</code>
로그인 후 복사

사용자 정의 consolePrintString 함수를 호출하여, 문자열은 올바른 문자 인코딩을 사용하여 콘솔에 직접 인쇄되어 예상되는 특수 문자 출력을 보장합니다.

위 내용은 Go를 사용하여 Windows 콘솔에서 UTF-8 문자열을 올바르게 출력하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!