我写了下面的简单程序以阿拉伯语输出你好:“سلام”,但它在控制台上的输出不正确:
import static java.lang.Integer.toBinaryString;
import java.util.Arrays;
public class testOfPrintln {
public static void main(String []strings){
String test="salam";
String test2="سلام";//unicode , arabic
byte []strbytes=test.getBytes();
int i=1;
for(byte bb:strbytes)
System.out.println(i++ + " -> " + bb);
byte []strbytes2=test2.getBytes();
i=1;
for(byte bb2:strbytes2){
System.out.println(i++ + " -> " + bb2);
}
}
}
和输出:
1 -> 115
2 -> 97
3 -> 108
4 -> 97
5 -> 109
1 -> -40
2 -> -77
3 -> -39
4 -> -124
5 -> -40
6 -> -89
7 -> -39
8 -> -123
为什么字节前有一个“-”字符?例如:-123 吨。