특수 문자가 포함된 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!