91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-07-20 02:26:20 來源:網絡 閱讀:935 作者:best_grx 欄目:編程語言
最近在編寫平臺對接軟件,需要從Oracle中取出blob類型圖片數據轉換為base64字符串寫入到xml中,這里記錄一下用到的轉換方法

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

// 將一張網絡圖片轉化成Base64字符串
public  String GetImageStrFromUrl(String imgURL) {
    byte[] data = null;
    try {
        // 創建URL
        URL url = new URL(imgURL);
        // 創建鏈接
        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();
    }
    // 對字節數組Base64編碼
    BASE64Encoder encoder = new BASE64Encoder();
    // 返回Base64編碼過的字節數組字符串
    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) // 圖像數據為空
        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) {// 調整異常數據
                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;
    }
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

威海市| 双城市| 呼和浩特市| 平谷区| 西青区| 东丰县| 博野县| 井陉县| 万山特区| 商南县| 兴业县| 永兴县| 霍林郭勒市| 会理县| 宝清县| 巴中市| 徐汇区| 游戏| 神农架林区| 苏尼特左旗| 健康| 香河县| 沂南县| 镇远县| 海原县| 大石桥市| 潍坊市| 临沭县| 五指山市| 琼中| 油尖旺区| 阳原县| 屏东市| 会理县| 崇仁县| 桐庐县| 乌鲁木齐县| 都兰县| 衡阳县| 牙克石市| 周至县|