1. 首先需要即将加载的图片的地址
private static final String PATH = "http://h.hiphotos.baidu.com/image/w3D2048/sign=2766611cbe315c6043956cefb989ca13/c83d70cf3bc79f3d3f442939b8a1cd11728b2916.jpg";
2. 利用图片地址打开网络连接:
URL url = new URL(PATH); // 定义URL
HttpURLConnection conn = (HttpURLConnection) url.openConnection(); // 打开连接
InputStream input = conn.getInputStream(); // 取得输入流
3.定义字节数组,用输入流向里面输入数据,同时定义输出流,用来将数据输出到内存当中
byte data[] = new byte[1024]; // 每次读取1024
while ((len = input.read(data)) != -1) { // 没有读取到底部
bos.write(data, 0, len); // 向内存中保存
}
代码:
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.widget.ImageView;
public class MyWebDemo extends Activity {
private static final String PATH = "http://h.hiphotos.baidu.com/image/w%3D2048/sign=2766611cbe315c6043956cefb989ca13/c83d70cf3bc79f3d3f442939b8a1cd11728b2916.jpg";
private ImageView img = null; // 定义图片显示
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setContentView(R.layout.main); // 调用布局管理器
this.img = (ImageView) super.findViewById(R.id.img); // 取得组件
try {
byte data[] = this.getUrlData(); // 接收数据
Bitmap bm = BitmapFactory.decodeByteArray(data, 0, data.length); // 生成图形
this.img.setImageBitmap(bm); // 显示图片
} catch (Exception e) {
e.printStackTrace();
}
}
public byte[] getUrlData() throws Exception { // 取得网络图片数据
ByteArrayOutputStream bos = null; // 内存输出流
try {
bos = new ByteArrayOutputStream(); // 定义内存输出流
URL url = new URL(PATH); // 定义URL
byte data[] = new byte[1024]; // 每次读取1024
HttpURLConnection conn = (HttpURLConnection) url.openConnection(); // 打开连接
InputStream input = conn.getInputStream(); // 取得输入流
int len = 0; // 接收读取长度
while ((len = input.read(data)) != -1) { // 没有读取到底部
bos.write(data, 0, len); // 向内存中保存
}
return bos.toByteArray(); // 将内存中的数组变为字节数组返回
} catch (Exception e) {
throw e;
} finally {
if (bos != null) {
bos.close(); // 关闭输出流
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center">
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>