package com.common.util;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import sun.misc.BASE64Encoder;
public class ImageUtils {
public static void main(String[] args) {
String filePath = "http://XXX/Photo/OTHER/01.jpg";//待处理的图片
System.out.println(TransferURL(filePath));//转换后的base64字符串
}
/**
* 将一张网络图片转化成Base64字符串
* @param imgURL
* @return
*/
public static String TransferURL(String imgURL) {
ByteArrayOutputStream data = new ByteArrayOutputStream();
try {
// 创建URL
URL url = new URL(imgURL);
byte[] by = new byte[1024];
// 创建链接
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setConnectTimeout(5000);
InputStream is = conn.getInputStream();
// 将内容读取内存中
int len = -1;
while ((len = is.read(by)) != -1) {
data.write(by, 0, len);
}
// 关闭流
is.close();
} catch (IOException e) {
e.printStackTrace();
}
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data.toByteArray());
}
}
调用ImageUtils:
String base64code =ImageUtils.TransferURL(imgurl);
得到base64编码:
"imgcode": "/9j/4AAQSkZJRgABAQEAYABgAAD/…Zg8NJTlJzTbjbbs4mNaspKNk9\r\n3/V/0t8z/9k="