有没有标准的方法可以替代这个自定义方法?
public static Byte[] box(byte[] byteArray) { Byte[] box = new Byte[byteArray.length]; for (int i = 0; i < box.length; i++) { box[i] = byteArray[i]; } return box; }
用户名或邮箱地址
密码