gpt4 book ai didi

Java编码: why the output is always the same?

转载 作者:行者123 更新时间:2023-12-01 23:06:36 26 4
gpt4 key购买 nike

出于什么原因我得到了相同的结果:

 groovy -e "println 'Hello'.getBytes('windows-1251')"

结果

[72, 101, 108, 108, 111]

 groovy -e "println 'Hello'.getBytes('UTF-8')"

结果是一样的

[72, 101, 108, 108, 111]

最佳答案

英文字母、数字、标准符号等几乎在每种编码中都保持相同的代码。

这对于 ASCII 第一页来说是正确的。代码为 0-127 的符号。如果您尝试任何其他字母,结果将会有所不同。

groovysh "println 'Привет'.getBytes('windows-1251')"
[-49, -16, -24, -30, -27, -14]


groovysh "println 'Привет'.getBytes('UTF-8')"
[-48, -97, -47, -128, -48, -72, -48, -78, -48, -75, -47, -126]

关于Java编码: why the output is always the same?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22655015/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com