Android Http基础:图片下载并显示和WebView的应用

server/2025/1/21 17:06:08/
http://www.w3.org/2000/svg" style="display: none;">

<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<ImageView
    android:id="@+id/image"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"></ImageView>
<WebView
    android:id="@+id/wedView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/image"></WebView>

MainActivity:


/**

  • 在Android上发送HTTP请求的方式一般有两种,HttpURLConnection和HttpClient

*/

public class MainActivity extends ActionBarActivity {

private WebView webView;
private ImageView imageView;
public static final int SHOW_WEDVIEW = 0;
private Handler handler = new Handler();
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    webView = (WebView) findViewById(R.id.wedView);
    imageView = (ImageView) findViewById(R.id.image);
    //通过网络加载图片
    new ImageThread("http://gb.cri.cn/mmsource/images/2013/02/22/35/14607758026320856623.jpg",imageView,handler).start();
    //在WebView中显示百度主页
    new HttpThread("http://www.baidu.com",webView,handler).start();
}

}

ImageThread(加载图片的线程):


public class ImageThread extends Thread {

//声明要传递的参数
private String url;
private ImageView imageView;
private Handler handler;
//创建构造方法,对参数进行初始化
public ImageThread(String url, ImageView imageView, Handler handler) {
    this.url = url;
    this.imageView = imageView;
    this.handler = handler;
}
@Override
public void run() {
    try {
        //定义一个URL对象
        URL httpUrl = new URL(url);
        //获取HttpURLConnection的实例,表示到URL所引用的远程对象的连接
        HttpURLConnection connection = (HttpURLConnection) httpUrl.openConnection();
        //设置读取超时时间
        connection.setReadTimeout(5000);
        //设置请求方法,GET表示希望从服务器那里获取数据,而POST则表示提交数据给服务器
        connection.setRequestMethod("GET");
        //设置该URLConnection的doOutput请求头字段的值
        connection.setDoInput(true);
        //用时间作为下载的图片的文件名
        String fileName = String.valueOf(System.currentTimeMillis());
        File downloadFile = null;
        InputStream inputStream = connection.getInputStream();
        //要把文件写到SD卡,所以用FileOutputStream
        FileOutputStream fileOutputStream = null;
        //判断SD卡是否存在,存在就创建文件
        if (Environment.getExternalStorageState().equals(
                Environment.MEDIA_MOUNTED)) {
            File parent = Environment.getExternalStorageDirectory();
            downloadFile = new File(parent,fileName);
            fileOutputStream = new FileOutputStream(downloadFile);
        }
        //创建一个2K的缓冲区
        byte[] bytes = new byte[2 * 1024];
        int length;
        if (fileOutputStream != null) {
            while ((length = inputStream.read(bytes)) != -1) {
                fileOutputStream.write(bytes,0,length);
            }
        }
        final Bitmap bitmap = BitmapFactory.decodeFile(downloadFile.getAbsolutePath());
        //通过handler去更新UI
        handler.post(new Runnable() {
            @Override
            public void run() {
                imageView.setImageBitmap(bitmap);
            }
        });
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

}

HttpThread(加载WebView的线程):


public class HttpThread extends Thread {

//声明要传递的参数
private String url;
private WebView webView;
private Handler handler;
//创建构造方法,对参数进行初始化
public HttpThread(String url, WebView webView, Handler handler) {
    this.url = url;
    this.webView = webView;
    this.handler = handler;
}
@Override
public void run() {
    try {
        //定义一个URL对象
        URL httpUrl = new URL(url);
        //获取HttpURLConnection的实例,表示到URL所引用的远程对象的连接
        HttpURLConnection connection = (HttpURLConnection) httpUrl.openConnection();
        //设置读取超时时间
        connection.setReadTimeout(5000);
        //设置请求方法,GET表示希望从服务器那里获取数据,而POST则表示提交数据给服务器
        connection.setRequestMethod("GET");
        final StringBuffer stringBuffer = new StringBuffer();
        /*  getInputStream():返回该URLConnection对应的输入流,用于获取URLConnection响应的内容

http://www.ppmy.cn/server/160236.html

相关文章

cmake 可使用的构建系统

cmake 可使用的构建系统 ChatGPT 说&#xff1a; ChatGPT CMake 支持多种构建系统&#xff0c;允许用户根据其开发环境选择适合的构建工具。以下是 CMake 常用的构建系统和生成器&#xff1a; 1. Visual Studio 系列 适用于 Windows 环境的 Visual Studio 构建系统&#xf…

PyTest自学-认识PyTest

1 PyTest自学-认识PyTest 1.1 PyTest可以用来做什么&#xff1f; PyTest是一个自动化测试框架&#xff0c;支持单元测试和功能测试&#xff0c;有丰富的插件&#xff0c;如&#xff0c;pytest-selemium, pytest-html等。 1.2 安装pytest 使用pip install -U pytest。 1.3 py…

Node.js 到底是什么

Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境&#xff0c;它允许开发者使用 JavaScript 编写服务器端代码。 一、主要特点 1. 事件驱动和非阻塞 I/O 模型 Node.js 采用事件驱动架构&#xff0c;通过回调函数处理 I/O 操作&#xff0c;这使得它在处理大量并发请…

【正点原子STM32精英V2开发板体验】体验LVGL的SD NAND文件系统

目的 验证基于SD NAND卡在正点原子STM32精英V2开发板上的兼容效果 实验材料 正点原子STM32精英V2开发板 TF 卡一片 SD NAND卡一片 实验步骤 1、打开例程【正点原子】精英STM32F103开发板 V2-资料盘(A盘)\4&#xff0c;程序源码\3&#xff0c;扩展例程\4&#xff0c;LVGL…

无数据库开源Wiki引擎WikiDocs

简介 什么是 WikiDocs &#xff1f; WikiDocs 是一个无数据库的开源 Markdown 文件平面 Wiki 引擎。它旨在提供一个简单、灵活且易于使用的 Wiki 解决方案&#xff0c;允许用户创建和管理文档而无需依赖传统数据库。 主要特点 无数据库&#xff1a;使用纯文本文件存储数据&am…

AI 之网:网络诈骗者的 “高科技伪装术”—— 智能诈骗的神秘面纱

本篇文章博主将以AI的反面应用为例&#xff1b;配合代码辅助说明&#xff1b;带大家了解背后的“黑面纱”&#xff1b;也同时希望大家能够正反结合&#xff1b;不要误入歧途。 &#xff1a;羑悻的小杀马特.-CSDN博客羑悻的小杀马特.擅长C/C题海汇总,AI学习,c的不归之路,等方面的…

RabbitMQ---应用问题

&#xff08;一&#xff09;幂等性介绍 幂等性是本身是数学中的运算性质&#xff0c;他们可以被多次应用&#xff0c;但是不会改变初始应用的结果 1.应用程序的幂等性介绍 包括很多&#xff0c;有数据库幂等性&#xff0c;接口幂等性以及网络通信幂等性等 就比如数据库的sel…

【设计模式】 单例模式(单例模式哪几种实现,如何保证线程安全,反射破坏单例模式)

单例模式 作用&#xff1a;单例模式的核心是保证一个类只有一个实例&#xff0c;并且提供一个访问实例的全局访问点。 实现方式优缺点饿汉式线程安全&#xff0c;调用效率高 &#xff0c;但是不能延迟加载懒汉式线程安全&#xff0c;调用效率不高&#xff0c;能延迟加载双重检…