如何在while循环中将带有UTF-8字符串的int数组转换为StringBuilder?例如:
int 数组:71, 73, 70, 56, 57, 97, 149, 0, 55, 0, 247...
结果字符串: GIF89a• €÷€ € €ÀÜÀ¦Êð*?ª*?ÿ ...
该行包含拉丁文、西里尔文和亚洲字符,以及各种符号和数字
do buffer.append((char)num[++i]);
while((byte)buffer.charAt(buffer.length()-1) != -1);
此方法分解所有非拉丁字符。