java将图片转为base64编码
将图片转为base64编码
path为图片路径
private static String imgToByte(String path){
File file = new File(path);
byte[] buffer = null;
try {
FileInputStream fis = new FileInputStream(file);
ByteArrayOutputStream bos = new B





