Android互联网访问图片并在客户端显示的方法

 更新时间:2015年12月26日 11:57:34   作者:sgx425021234  
这篇文章主要介绍了Android互联网访问图片并在客户端显示的方法,结合实例分析了Android处理图片的技巧,并附带了Android的URL封装类,网络连接封装类与输出流封装类,需要的朋友可以参考下

本文实例讲述了Android互联网访问图片并在客户端显示的方法。分享给大家供大家参考,具体如下:

1、布局界面

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".MainActivity" >
 <EditText
  android:id="@+id/url_text"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentLeft="true"
  android:layout_alignParentRight="true"
  android:layout_alignParentTop="true"
  android:ems="10"
  android:inputType="textPostalAddress"
  android:text="@string/url_text" >
  <requestFocus />
 </EditText>
 <Button
  android:id="@+id/btn_text"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignLeft="@+id/url_text"
  android:layout_below="@+id/url_text"
  android:layout_marginTop="32dp"
  android:onClick="sendHttp"
  android:text="@string/btn_text" />
 <ImageView
  android:id="@+id/iv_ie"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentBottom="true"
  android:layout_alignParentLeft="true"
  android:layout_alignRight="@+id/url_text"
  android:layout_below="@+id/btn_text"
  android:src="@drawable/ic_launcher" />
</RelativeLayout>

2、封转的一些类

URL的封装:

package com.example.lession08_code.utis;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
public class HttpUtils {
 public static String sendGet(String path){
  String content=null;
  try{
   //设置访问的url
   URL url=new URL(path);
   //打开请求
   HttpURLConnection httpURLConnection=(HttpURLConnection) url.openConnection();
   //设置请求的信息
   httpURLConnection.setRequestMethod("GET");
   //设置请求是否超时
   httpURLConnection.setConnectTimeout(5000);
   //判断服务器是否响应成功
   if(httpURLConnection.getResponseCode()==200){
    //获取响应的输入流对象
    InputStream is=httpURLConnection.getInputStream();
    byte data[]=StreamTools.isTodata(is);
    //把转换成字符串
    content=new String(data);
    //内容编码方式
    if(content.contains("gb2312")){
     content=new String(data,"gb2312");
    }
   }
   //断开连接
   httpURLConnection.disconnect();
  }catch(Exception e){
   e.printStackTrace();
  }
  return content;
 }
 public static Bitmap sendGets(String path){
  Bitmap bitmap=null;
  try{
   //设置访问的url
   URL url=new URL(path);
   //打开请求
   HttpURLConnection httpURLConnection=(HttpURLConnection) url.openConnection();
   //设置请求的信息
   httpURLConnection.setRequestMethod("GET");
   //设置请求是否超时
   httpURLConnection.setConnectTimeout(5000);
   //判断服务器是否响应成功
   if(httpURLConnection.getResponseCode()==200){
    //获取响应的输入流对象
    InputStream is=httpURLConnection.getInputStream();
    //直接把is的流转换成Bitmap对象
    bitmap=BitmapFactory.decodeStream(is);
   }
   //断开连接
   httpURLConnection.disconnect();
  }catch(Exception e){
   e.printStackTrace();
  }
  return bitmap;
 }
}

判断网络是否连接的封装类

package com.example.lession08_code.utis;
import android.app.AlertDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.widget.Toast;
public class NetWorkUtils {
 private Context context;
 // 网路链接管理对象
 public ConnectivityManager connectivityManager;
 public NetWorkUtils(Context context) {
  this.context = context;
  // 获取网络链接的对象
  connectivityManager = (ConnectivityManager) context
    .getSystemService(Context.CONNECTIVITY_SERVICE);
 }
 public boolean setActiveNetWork() {
  boolean flag=false;
  // 获取可用的网络链接对象
  NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();
  if (networkInfo == null) {
   new AlertDialog.Builder(context)
     .setTitle("网络不可用")
     .setMessage("可以设置网络?")
     .setPositiveButton("确认",
       new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog,
          int which) {
         Toast.makeText(context, "点击确认",
           Toast.LENGTH_LONG).show();
         // 声明意图
         Intent intent = new Intent();
         intent.setAction(Intent.ACTION_MAIN);
         intent.addCategory("android.intent.category.LAUNCHER");
         intent.setComponent(new ComponentName(
           "com.android.settings",
           "com.android.settings.Settings"));
         intent.setFlags(0x10200000);
         // 执行意图
         context.startActivity(intent);
        }
       })
     .setNegativeButton("取消",
       new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog,
          int which) {
        }
       }).show();// 必须.show();
  }
  if(networkInfo!=null){
   flag=true;
  }
  return flag;
 }
}

输出流的封装类

package com.example.lession08_code.utis;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
public class StreamTools {
 public static byte[] isTodata(InputStream is) throws IOException{
  //字节输出流
  ByteArrayOutputStream bops=new ByteArrayOutputStream();
  //读取数据的缓冲区
  byte buffer[]=new byte[1024];
  //读取记录的长度
  int len=0;
  while((len=is.read(buffer))!=-1){
   bops.write(buffer, 0, len);
  }
  //把读取的内容转换成byte数组
  byte data[]=bops.toByteArray();
  return data;
 }
}

注意:在这里还需要加权限问题

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Android开发之动画实现方法

    Android开发之动画实现方法

    这篇文章主要介绍了Android开发之动画实现方法,实例分析了Android中动画的原理与实现技巧,需要的朋友可以参考下
    2015-05-05
  • Android单选按钮RadioButton的使用详解

    Android单选按钮RadioButton的使用详解

    今天小编就为大家分享一篇关于Android单选按钮RadioButton的使用详解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-03-03
  • 详细分析Android-Zygote的启动过程

    详细分析Android-Zygote的启动过程

    在Android系统中,所有的应用程序进程以及系统服务进程SystemServer都是由Zygote进程孕育(fork)出来的,这也许就是为什么要把它称为Zygote(受精卵)的原因吧。由于Zygote进程在Android系统中有着如此重要的地位,本文将详细分析它的启动过程
    2021-06-06
  • RecyclerView上拉加载封装代码

    RecyclerView上拉加载封装代码

    这篇文章主要为大家详细介绍了RecyclerView上拉加载封装代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-08-08
  • 详解Android使用Handler造成内存泄露的分析及解决方法

    详解Android使用Handler造成内存泄露的分析及解决方法

    这篇文章主要介绍了详解Android使用Handler造成内存泄露的分析及解决方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-12-12
  • Android RecyclerView实现悬浮吸顶、分隔线、到底提示效果

    Android RecyclerView实现悬浮吸顶、分隔线、到底提示效果

    这篇文章主要介绍了Android RecyclerView实现悬浮吸顶、分隔线、到底提示效果,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-01-01
  • Android开发之CheckBox的简单使用与监听功能示例

    Android开发之CheckBox的简单使用与监听功能示例

    这篇文章主要介绍了Android开发之CheckBox的简单使用与监听功能,结合简单实例形式分析了Android使用CheckBox控件的布局与功能实现技巧,需要的朋友可以参考下
    2017-07-07
  • 详解Dagger2在Android开发中的新用法

    详解Dagger2在Android开发中的新用法

    本篇文章主要介绍了Dagger2在Android开发中的新用法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-07-07
  • Android TabWidget底部显示效果

    Android TabWidget底部显示效果

    这篇文章主要为大家详细介绍了Android TabWidget底部显示效果的三种方式,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • 浅析Android手机卫士关闭自动更新

    浅析Android手机卫士关闭自动更新

    保存数据的四种方式,网络,广播提供者,SharedPreferences,数据库。接下来通过本文给大家介绍android手机卫士关闭自动更新的相关知识,感兴趣的朋友一起学习吧
    2016-04-04

最新评论