软件编程
位置:首页>> 软件编程>> java编程>> 基于JSON实现传输byte数组过程解析

基于JSON实现传输byte数组过程解析

作者:至诚尽性  发布时间:2021-11-23 05:07:21 

标签:JSON,传输,byte,数组

今晚上在编写udp传输文件的时候发现无法用JSON传输字节数组,试了很多种办法都会报错,最后查资料找到了Base64这个类,这个类可以将字节数组转为字符串,在JSON中传输以后可以再转化为字节数组。

写个小例子如下:


package test;

import java.util.Base64;

public class testStringAndbyte
{

public static void main(String[] args)
 {
   // TODO Auto-generated method stub
   byte [] s1 = {0,1,0};
    String FileBuf = Base64.getEncoder().encodeToString(s1);
    System.out.println(FileBuf);
    byte[] s2 = {};
    s2 = Base64.getDecoder().decode(FileBuf);
    for(int i =0;i<s2.length;i++)
    {
      System.out.print(s2[i]);
    }

}

}

运行结果如下所示:

基于JSON实现传输byte数组过程解析

这样的话就可以使用JSON格式传送字节数组了。

来源:https://www.cnblogs.com/xl1998/p/13190521.html

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com