json传输图片
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
json是无法传输二进制的文本格式
可以将图片转为字符串形式传输
Test
**package test;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import utils.ImgIOJsonOutputUtils;
public class Test {
public static void main(String[] args) throws Exception {
String str;
try {
str = ImgIOJsonOutputUtils.encodeImage("F:/android_img/ljgjjd.jpg");
System.out.println(str);
// 字符串解码为byte数组
byte[] decode = ImgIOJsonOutputUtils.decode(str);
FileOutputStream fos = new FileOutputStream(
"F:/android_img/ljgjjd_copy.jpg");
fos.write(decode);
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}**
ImgIOJsonOutputUtils
package utils;
import java.io.FileInputStream;
import java.io.IOException;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class ImgIOJsonOutputUtils {
/**
* TODO:将byte数组以Base64方式编码为字符串
* @param bytes 待编码的byte数组
* @return 编码后的字符串
* */
public static String encode(byte[] bytes){
return new BASE64Encoder().encode(bytes);
}
/**
* TODO:将以Base64方式编码的字符串解码为byte数组
* @param encodeStr 待解码的字符串
* @return 解码后的byte数组
* @throws IOException
* */
public static byte[] decode(String encodeStr) throws IOException{
byte[] bt = null;
BASE64Decoder decoder = new BASE64Decoder();
bt = decoder.decodeBuffer(encodeStr);
return bt;
}
/**
* TODO:将两个byte数组连接起来后,返回连接后的Byte数组
* @param front 拼接后在前面的数组
* @param after 拼接后在后面的数组
* @return 拼接后的数组
* */
public static byte[] connectBytes(byte[] front, byte[] after){
byte[] result = new byte[front.length + after.length];
System.arraycopy(front, 0, result, 0, after.length);
System.arraycopy(after, 0, result, front.length, after.length);
return result;
}
/**
* TODO:将图片以Base64方式编码为字符串
* @param imgUrl 图片的绝对路径(例如:D:\\jsontest\\abc.jpg)
* @return 编码后的字符串
* @throws IOException
* */
public static String encodeImage(String imgUrl) throws IOException{
FileInputStream fis = new FileInputStream(imgUrl);
byte[] rs = new byte[fis.available()];
fis.read(rs);
fis.close();
return encode(rs);
}
}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)