android通過http協議獲得圖片

來源:互聯網
上載者:User

 android通過圖片網址獲得圖片並顯示在imageView中。

下面就簡單的來說明操作過程:

首先必須在布局檔案中聲明imageView控制項:

<ImageView 
android:id="@+id/image" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" />

還必須在資訊清單檔中加入訪問網路的許可權:

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

其次:用一個service類來實現訪問http協議,並且獲得連結的傳回值這個過程:htmlPath是圖片的網路地址

public class PageService { 
/**@description:擷取圖片的資料 
* @author:Administrator 
* @return:byte[] 
* @param htmlpath 
* @return 
* @throws Exception 
*/ 

public static byte[] getImage(String htmlpath) throws Exception { 
byte[] imagearray = null; 
URL url = new URL(htmlpath); 
HttpURLConnection conn = (HttpURLConnection) url.openConnection(); 
conn.setConnectTimeout(5000); 
// conn.setRequestMethod("GET"); 
conn.connect(); 
if (conn.getResponseCode() == 200) { 
byte[] buffer = new byte[1024]; 
ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream(); 
int len = 0; 
InputStream inputStream = conn.getInputStream(); 
while ((len = inputStream.read(buffer)) != -1) { 
arrayOutputStream.write(buffer, 0, buffer.length); 

imagearray = arrayOutputStream.toByteArray(); 

return imagearray; 



最後在activity中啟用一個線程來調用這個業務方法,並在handler中對UI進行更新:(必須實現線程否則會出錯,這是和3.0版本之前不同的地方)

public class MainActivity extends Activity { 
private EditText strpath; 
private TextView htmlcontent; 
private ImageView imageview; 
Handler handler=new Handler(){ 

@Override 
public void handleMessage(Message msg) { 
byte[] data=(byte[])msg.obj; 
Bitmap image=BitmapFactory.decodeByteArray(data, 0, data.length); 
imageview.setImageBitmap(image);}


下面是線程中的內容:

private final class ImageThread extends Thread { 

@Override 
public void run() { 
String htmlpath=strpath.getText().toString(); 
htmlpath="http://www.baidu.com/img/shouye_b5486898c692066bd2cbaeda86d74448.gif"; 
byte[] htmlarray=null; 
try { 
htmlarray=PageService.getImage(htmlpath); 
} catch (Exception e) { 
e.printStackTrace(); 

Message msg=new Message(); 
msg.obj=htmlarray; 
msg.what=1; 
handler.sendMessage(msg); 


}

最後用點擊一個button來觸發擷取圖片的事件:

private final class ButtonClickListener implements View.OnClickListener { 

@Override 
public void onClick(View v) { 
ImageThread thread=new ImageThread(); 
thread.start(); 

}

好了,介紹完畢。

最後如果擷取的內容為html頁面的內容的話,如果內容過長,就需要用捲軸來顯示:

可以在TextView外面加上ScollView載入捲軸:

<ScrollView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" > 

<TextView 
android:id="@+id/htmlcontent" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" /> 
</ScrollView>  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.