创建输出带有特殊字符的 UTF-8 编码字符串的 Go 可执行文件时,考虑默认编码非常重要由 Windows 控制台使用,即 IBM850(代码页 850)。由于字符编码不正确,这可能会导致输出损坏。
为了确保 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中文网其他相关文章!