标签: java
如何获取角色的二进制值 例如:字母C(ASCII代码= 067)到二进制值01000011。
答案 0 :(得分:9)
使用Integer.toBinaryString(character...);
Integer.toBinaryString(character...);