We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ddb320 commit 9708155Copy full SHA for 9708155
22.编码解码.md
@@ -9,7 +9,7 @@
9
```Java
10
System.out.println("中国");
11
```
12
-1. 无论文件以任何编码格式载入到JVM中,"中国"二字都会以unicode码的形式存在JVM中(\u4e2d\u56fd);
+1. 无论文本以任何编码格式载入到JVM中,"中国"二字都会以unicode码的形式存在JVM中(\u4e2d\u56fd);
13
2. 假如IDE控制台的编码为UTF-8,当对"中国"二字进行控制台输出时,系统会将unicode码转为具体的UTF-8编码格式。(\u4e2d\u56fd -> e4b8ade59bbd)
14
15
@@ -77,4 +77,4 @@ public void gbk_unicode_utf8() throws DecoderException,
77
78
实际上,这里的unicode编码对应的是unicode的`UTF-16`编码。以16位定长的二进制表示一个unicode码。
79
80
-## 参考资料
+## 参考资料
0 commit comments