成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

android開發(fā)——獲取網(wǎng)絡圖片

//通過地址獲取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");
            //判斷請求狀態(tài)碼是否連接成功
            if (connection.getResponseCode() == 200) {
                InputStream is = connection.getInputStream();
                //bitmapfactory可以有多種生存bitmap的方法
                bitmap = BitmapFactory.decodeStream(is);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return bitmap;
    }
    //獲得字節(jié)數(shù)組
    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();
    }

名稱欄目:android開發(fā)——獲取網(wǎng)絡圖片
文章位置:http://jinyejixie.com/article0/ipiiio.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供微信小程序、靜態(tài)網(wǎng)站、網(wǎng)站策劃、網(wǎng)站排名、定制網(wǎng)站、服務器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化
雷州市| 嘉祥县| 唐海县| 桑植县| 开鲁县| 方正县| 滨州市| 汶上县| 晋江市| 方正县| 辽中县| 油尖旺区| 双辽市| 建阳市| 延边| 桂平市| 抚顺市| 安西县| 团风县| 区。| 蓝山县| 奉化市| 德昌县| 焦作市| 五家渠市| 临澧县| 渝北区| 商南县| 彰武县| 宿迁市| 茌平县| 枝江市| 黎平县| 大埔区| 会宁县| 化隆| 霍城县| 洛南县| 长顺县| 丽水市| 沧州市|