标签:
查看网络图片
1主界面设计
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent" 5 android:orientation="vertical" > 6 7 <LinearLayout 8 android:layout_width="fill_parent" 9 android:layout_height="wrap_content" > 10 11 <EditText 12 android:id="@+id/addressET" 13 android:layout_width="0dp" 14 android:layout_height="wrap_content" 15 android:layout_weight="1" 16 android:inputType="textEmailAddress" > 17 18 <requestFocus /> 19 </EditText> 20 21 <Button 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:onClick="onClick" 25 android:text=" GO " /> 26 </LinearLayout> 27 28 <ImageView 29 android:id="@+id/imageIV" 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" /> 32 33 </LinearLayout>
主界面显示如下
2 Activity设计
package cn.itcast.pic; import android.app.Activity; import android.app.ProgressDialog; import android.graphics.Bitmap; import android.os.Bundle; import android.os.Handler; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; public class mainActivity extends Activity { private TextView addressET; private ImageView imageIV; private Handler handler=new Handler(); //在主线程中创建handler private ProgressDialog dialog; private ImageService service; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //1、获取对话框的id addressET = (TextView) this.findViewById(R.id.addressET); imageIV = (ImageView) this.findViewById(R.id.imageIV); service = new ImageService(this); } public void onClick(View v){ //把图片放在一个新的线程里面来读取. new Thread(){//创建一个新的线程 public void run(){ try { String address = addressET.getText().toString(); handler.post(new Runnable() {//此处用一个匿名内部类,runnable自动把消息发送给主线程创建处理的handler,主线程会自动更新。 public void run() { dialog=new ProgressDialog(mainActivity.this); dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);//设置进度条样式 dialog.setMessage("请稍候..."); dialog.setCancelable(false);//判断是否取消进度条 dialog.show(); } }); //由于网络操作比较耗时,所以在新线程中操作 final Bitmap image = service.getImage(address); handler.post(new Runnable() { public void run() { dialog.dismiss(); imageIV.setImageBitmap(image);//新线程更新界面,需要使用handler } }); } catch (Exception e) { e.printStackTrace(); Toast.makeText(getApplicationContext(), "服务器忙,请稍后再试!", 0).show(); } } }.start(); } }
3读取网络图片的详细代码
package cn.itcast.pic; import java.io.File; import java.io.FileOutputStream; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; import android.accounts.NetworkErrorException; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Bitmap.CompressFormat; import android.graphics.BitmapFactory; public class ImageService { private Context context; public ImageService(Context context) { super(); this.context = context; } public Bitmap getImage(String address) throws Exception { // 1.通过Url对象封装url对象 URL url = new URL(address); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setReadTimeout(3000); // 2.判断是否有缓存文件 File cacheFile = new File(context.getCacheDir(), URLEncoder.encode(address));// 缓存文件 if (cacheFile.exists())// 判断是否有缓存 conn.setIfModifiedSince(cacheFile.lastModified());// 发送缓存文件的最后修改时间 // 3.获取状态码,根据状态吗来判断接下来的操作。读取文件?还是写缓存,写缓存的时候记着用多个线程 int code = conn.getResponseCode(); if (code == 200) { byte[] data = Util.read(conn.getInputStream()); Bitmap bm = BitmapFactory.decodeByteArray(data, 0, data.length);// 转化为图片 weiteCache(cacheFile, bm); return bm; } else if(code==304){ return BitmapFactory.decodeFile(cacheFile.getAbsolutePath());//读取本地数据,并转为图片来显示 } // 如果不成功,抛异常,给我们自己看的 throw new NetworkErrorException("访问服务器出错:"+code); } // 4. 写缓存文件 private void weiteCache(final File cacheFile, final Bitmap bm) { // 使用一个新的线程来写,这样的好处就是在页面打开的时候不会因为写缓存而等待时间 new Thread() { public void run() { try { FileOutputStream fos = new FileOutputStream(cacheFile); bm.compress(CompressFormat.JPEG, 100, fos);//指定格式 存储到本地 fos.close(); } catch (Exception e) { throw new RuntimeException(e); } } }.start(); } }
这样,实现一个功能读取到服务器上的一张图片,然后下载到本地的程序本程序使用多线程来读取网络图片
标签:
原文地址:http://www.cnblogs.com/lzk101816/p/4620344.html