【byte转String _md5/des 】 | IT修真院·坑乎
问题已收录 byte转String
我也踩过这个坑( 1 )
已统计您的踩坑,无需重复点击
回答(1)
md5/des
详细描述
错误截图
源码
编辑于2024-09-22
  • [成都|荣耀师兄]JAVA-先小波
    0

    尝试一下byte转string?

    比如:

            //Original String
            String string = "hello world";         
            //Convert to byte[]
            byte[] bytes = string.getBytes();         
            //Convert back to String
            String s = new String(bytes);


    编辑于2019-03-12