Android互連網訪問圖片並在用戶端顯示的方法_Android

來源:互聯網
上載者:User

本文執行個體講述了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程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.