如果字节数组包含非ascii字符,是否会创建字符串?
String s = new String(byte[] b)
答案 0 :(得分:0)
您可以使用new String (byte[] data, String charsetName)
将第二个参数作为US-ASCII
答案 1 :(得分:0)
将单个字节解释为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();
}
遇到不可打印的字节时,我只打印一个'。'由十六进制转储实用程序使用多年。
答案 2 :(得分:-1)
不,它不会失败。但是,有方法可以检测字符串中的非ascii字符并将其删除。但是带有非ascii字符的字符串非常好。