public static String byteToStr(byte[] b) { return new String(b); } public static byte[] strToByte(String str){ return str.getBytes(); }
刚开始的时候byte[]转换为String的时候,总是使用b.toString() , 结果输出的总是一个对象
同样,想要输出byte[],也要以形式 str.getBytes()[0] ; str.getBytes()[1] 的形式 ,不能直接输出 str.getBytes();
时间: 2024-10-12 20:52:32