当前位置: 技术问答>java相关
新手问题,立刻给分:如何把一个char[]的值赋给byte[]
来源: 互联网 发布时间:2015-07-11
本文导语: rt | new String(char[]),String.getBytes() 实现起来比较简单,效率可能差了一些 | 你看这样能不能满足你的要求: public class CharToByte { public static void main(String[] args) { c...
rt
|
new String(char[]),String.getBytes()
实现起来比较简单,效率可能差了一些
实现起来比较简单,效率可能差了一些
|
你看这样能不能满足你的要求:
public class CharToByte {
public static void main(String[] args) {
char[] chars = {'A','B','C','D','E','F','G'};
byte[] bytes = new byte[chars.length];
for(int i= 0; ibyte[]
public class CharToByte {
public static void main(String[] args) {
char[] chars = {'A','B','C','D','E','F','G'};
byte[] bytes = new byte[chars.length];
for(int i= 0; ibyte[]