从远程路径读取图片,进行base64转码

Posted Zhon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从远程路径读取图片,进行base64转码相关的知识,希望对你有一定的参考价值。

public static byte[] getImageFromNetByUrl(String strUrl){  
        try {  
            URL url = new URL(strUrl);  
            HttpURLConnection conn = (HttpURLConnection)url.openConnection();  
            conn.setRequestMethod("GET");  
            conn.setConnectTimeout(5 * 1000);  
            InputStream inStream = conn.getInputStream();//通过输入流获取图片数据  
            byte[] btImg = readInputStream(inStream);//得到图片的二进制数据  
            return btImg;  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
        return null;  
    }  
    //由于读取需要一定时间,所以不能单纯往字节数组里读,所以需要判断是否读完 public static byte[] readInputStream(InputStream inStream) throws Exception{
  //存放读取的所有的字节数组 ByteArrayOutputStream outStream = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int len = 0; while( (len=inStream.read(buffer)) != -1 ){ outStream.write(buffer, 0, len); } inStream.close(); return outStream.toByteArray(); } private static String getImageStr(String imgUrl) { byte[] data = null; try { data =getImageFromNetByUrl(imgUrl);; } catch (Exception e) { e.printStackTrace(); } BASE64Encoder encoder = new BASE64Encoder(); return encoder.encode(data); }

  

以上是关于从远程路径读取图片,进行base64转码的主要内容,如果未能解决你的问题,请参考以下文章

java base64位图片转码上传服务器,后台解码,后台保存文件路径不知道怎么写 求教(不是安卓)

uni-app上传头像base64转码

Java对图片Base64转码--HTML对Base64解码

利用base64函数,对文件进行转码加密

php 图片用base64转码完的文本比以前还大 是为啥?

java经过base64转码图片后获得的字符串不能做字符串操作