真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

關于圖片與base64相互轉換的工具類

最近在編寫平臺對接軟件,需要從Oracle中取出blob類型圖片數(shù)據(jù)轉換為base64字符串寫入到xml中,這里記錄一下用到的轉換方法

// 將一張本地圖片轉化成Base64字符串
public  static String GetImageStrFromPath(String imgPath) {
    InputStream in = null;
    byte[] data = null;
    // 讀取圖片字節(jié)數(shù)組
    try {
        in = new FileInputStream(imgPath);
        data = new byte[in.available()];
        in.read(data);
        in.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
    // 對字節(jié)數(shù)組Base64編碼
    BASE64Encoder encoder = new BASE64Encoder();
    // 返回Base64編碼過的字節(jié)數(shù)組字符串
    return encoder.encode(data);
}

// 將一張網(wǎng)絡圖片轉化成Base64字符串
public  String GetImageStrFromUrl(String imgURL) {
    byte[] data = null;
    try {
        // 創(chuàng)建URL
        URL url = new URL(imgURL);
        // 創(chuàng)建鏈接
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("GET");
        conn.setConnectTimeout(5 * 1000);
        InputStream inStream = conn.getInputStream();
        data = new byte[inStream.available()];
        inStream.read(data);
        inStream.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
    // 對字節(jié)數(shù)組Base64編碼
    BASE64Encoder encoder = new BASE64Encoder();
    // 返回Base64編碼過的字節(jié)數(shù)組字符串
    return encoder.encode(data);
}

// 將blob類型圖片轉換為Base64字符串
public static String blobToBase64(Blob blob) {
    String result = "";
    if (null != blob) {
        try {
            InputStream msgContent = blob.getBinaryStream();
            ByteArrayOutputStream output = new ByteArrayOutputStream();
            byte[] buffer = new byte[100];
            int n = 0;
            while (-1 != (n = msgContent.read(buffer))) {
                output.write(buffer, 0, n);
            }
            result = new BASE64Encoder().encode(output.toByteArray());
            output.close();
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    } else {
        return null;
    }
}

// 將base64字符串轉換成圖片
public static boolean GenerateImage(String imgStr) {
    if (imgStr == null) // 圖像數(shù)據(jù)為空
        return false;
    BASE64Decoder decoder = new BASE64Decoder();
    try {
        // Base64解碼
        byte[] b = decoder.decodeBuffer(imgStr);
        for (int i = 0; i < b.length; ++i) {
            if (b[i] < 0) {// 調整異常數(shù)據(jù)
                b[i] += 256;
            }
        }
        // 生成jpeg圖片
        String imgFilePath = "d://222.jpg";
        OutputStream out = new FileOutputStream(imgFilePath);
        out.write(b);
        out.flush();
        out.close();
        return true;
    } catch (Exception e) {
        return false;
    }
}

分享標題:關于圖片與base64相互轉換的工具類
當前鏈接:http://weahome.cn/article/ieidjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部