java汉字转unicode编码并输出为short数组
时间: 2024-02-05 15:05:02 浏览: 67
可以在汉字转Unicode编码的基础上,再将每个Unicode编码值转成short类型,最后将所有short值存储到short数组中。示例代码如下:
```
public static short[] chineseToShortArray(String str) {
int length = str.length();
short[] result = new short[length];
for (int i = 0; i < length; i++) {
char c = str.charAt(i);
if (c >= 0 && c <= 127) {
result[i] = (short) c;
} else {
result[i] = (short) Integer.parseInt(Integer.toHexString(c), 16);
}
}
return result;
}
```
使用方式:
```
String str = "你好";
short[] shorts = chineseToShortArray(str);
for (short s : shorts) {
System.out.print(s + " ");
}
```
输出结果:
```
20320 22909
```
其中,20320和22909分别是汉字“你”和“好”的Unicode编码值,将它们转成short类型后就是20320和22909。
阅读全文