知道这些, 我们就可以像c那样重载操作符了
这应该也算是descriptor的一种吧
Java, Python, IR, KM, NLP, JS, Web2.0
ByteToCharConverter convertor =
ByteToCharConverter.getConverter(encoding);
//将byte转到制定编码
char[] c = convertor.convertAll(b);
for (int i = 0; i < c.length; i++) {
System.out.println(c[i]+"--");
}