获取网络数据

J2SE实现网络图片的获取

public static void main(String[] args) throws Exception {

       String path = "http://t3.baidu.com/it/u=1786103592,4245522417&fm=0&gp=0.jpg";

      

       URL url = new URL(path);

      

       HttpURLConnection conn = (HttpURLConnection) url.openConnection();

       conn.setRequestMethod("GET");

       conn.setConnectTimeout(5*1000);

       InputStream inStream = conn.getInputStream();

      

       ByteArrayOutputStream outStream = newByteArrayOutputStream();

       byte[] buffer = new byte[1024];

      

       int len=0;

       while((len=inStream.read(buffer))!=-1){

           outStream.write(buffer,0,len);

       }

      

       byte[] data = outStream.toByteArray();

      

       File f = new File("pic.jpg");

       FileOutputStream fos = new FileOutputStream(f);

       fos.write(data);

       fos.close();

    }

Androd中获取网络图片

<string name="btn_text">显示网络图片</string>

    <string name="error">下载图片失败!!</string>

<Button

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="@string/btn_text"

        android:id="@+id/showBtn"

        />

   

    <ImageView

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:id="@+id/imageView"

        />  

添加ImageService类

package cn.class3g.service;

public class ImageService {

    public static byte[] getImage(Stringpath) throws Exception{

       URL url = new URL(path);

       //get //post

       HttpURLConnection conn =(HttpURLConnection)url.openConnection();

       conn.setRequestMethod("GET");

       conn.setConnectTimeout(5*1000);

       InputStream inStream = conn.getInputStream();

      

       ByteArrayOutputStream outStream = new ByteArrayOutputStream();

       byte[] buffer = new byte[1024];

       int len = 0;

       while( (len = inStream.read(buffer)) !=-1 ){

           outStream.write(buffer, 0, len);

       }

       byte[] data = outStream.toByteArray();//图片的二进制数据

       outStream.close();

       inStream.close();

       return data;

    }

}

Activity

public void onClick(View v) {

       String path = "http://t3.baidu.com/it/u=1786103592,4245522417&fm=0&gp=0.jpg";

 

       try {

           byte[] data = ImageService.getImage(path);

 

           Bitmap bitmap = BitmapFactory.decodeByteArray(data,0, data.length);

           imgView.setImageBitmap(bitmap);

          

       } catch (Exception e) {

//         e.printStackTrace();

           Log.e("TAG", e.toString());

           Toast.makeText(this, R.string.error, 1).show();

       }

    }

http://t3.baidu.com/it/u=1786103592,4245522417&fm=0&gp=0.jpg

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值