gpt4 book ai didi

java - 您可以将包含不可打印字符的字节数组转换为字符串吗?

转载 作者:行者123 更新时间:2023-11-29 09:30:55 25 4
gpt4 key购买 nike

如果字节数组包含非ascii字符,是否会创建字符串?

String s  = new String(byte[] b)

最佳答案

将单个字节解释为 ascii 字符,很容易拒绝小于 32 和大于 126 的值。

public static boolean isPrintableAscii(byte value)
{
return (value > 32 ) && (value < 127);
}

public static String readableText(byte[] buffer, int offset, int bufferSize)
{
StringBuilder builder = new StringBuilder();
for( int index = 0; index < bufferSize; ++index)
{
byte current = buffer[offset+index];
if( isPrintableAscii(current))
{
builder.append((char)current);
}
else
{
builder.append('.');
}
}

return builder.toString();
}

当遇到不可打印的字节时,我就打印一个'.'由十六进制转储实用程序使用了很长时间。

关于java - 您可以将包含不可打印字符的字节数组转换为字符串吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11060860/

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