图片链接转为base64码

代码如下:
//链接url下载图片,并转换为base64字符串
public static String downloadPictureToBase64(String sourceUrl) {
    URL url = null;
    int imageNumber = 0;
    try {
        url = new URL(sourceUrl);
        Image image = ImageIO.read(url);
        if(image==null){// 无内容
            return "";
        }
        DataInputStream dataInputStream = new DataInputStream(url.openStream());
        ByteArrayOutputStream output = new ByteArrayOutputStream();

        byte[] buffer = new byte[1024];
        int length;

        while ((length = dataInputStream.read(buffer)) > 0) {
            output.write(buffer, 0, length);
        }
        byte[] context=output.toByteArray();
        String encoded = Base64.getEncoder().encodeToString(context);
        return encoded;
    } catch (Exception e) {
        System.out.println(sourceUrl+"此链接不是图片或图片无实际内容,无法转为base64码,错误信息为:"+e.getMessage());
        return "";
    }
}

需要注意的是,在对接外部接口时,对方提供的接口中,图片链接未必对应完整图片,可能失效,可能残缺,如果不加处理可能会造成各种问题。因此,将下载下来的内容转为图片流并判断其是否为空是非常必要的步骤。

你可能感兴趣的:(图片链接转为base64码)