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

溫馨提示×

溫馨提示×

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

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

android開發——獲取網絡圖片

發布時間:2020-06-24 07:40:27 來源:網絡 閱讀:352 作者:xiongbuaamao 欄目:移動開發



 

//通過地址獲取bitmap
    public Bitmap getBitmap(String path) {
        Bitmap bitmap = null;
        try {
            //封裝url
            URL url = new URL(path);
            //獲得httpurl連接對象
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            //設置連接超時
            connection.setConnectTimeout(5*1000);
            //設置請求方法
            connection.setRequestMethod("GET");
            //判斷請求狀態碼是否連接成功
            if (connection.getResponseCode() == 200) {
                InputStream is = connection.getInputStream();
                //bitmapfactory可以有多種生存bitmap的方法
                bitmap = BitmapFactory.decodeStream(is);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return bitmap;
    }
    //獲得字節數組
    public void getBytesByIs(InputStream is) throws IOException {
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        int len ;
        byte[] data = new byte[1024];
        while((len = is.read(data))!=-1){
            bos.write(data, 0, len);
        }
        byte[] bytes = bos.toByteArray();
    }


向AI問一下細節

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

AI

衡南县| 福州市| 榆中县| 崇左市| 新干县| 连平县| 永兴县| 宣恩县| 呈贡县| 平昌县| 镇平县| 汪清县| 科技| 灵寿县| 陇川县| 淳化县| 乐山市| 泰和县| 开鲁县| 焦作市| 武定县| 松江区| 武鸣县| 古交市| 古浪县| 安溪县| 富宁县| 普安县| 卢龙县| 河曲县| 衢州市| 铜陵市| 治县。| 新昌县| 上虞市| 西乌珠穆沁旗| 乐山市| 泰和县| 托克逊县| 阿巴嘎旗| 麻栗坡县|