在Android中要想获取网络资源,可以使用 HttpURLConnection 和 HttpsURLConnection 来实现相关功能。 下面案例实现了基于URL的简单请求响应,通过HttpURLConnection 获取连接,
在Android中要想获取网络资源,可以使用 HttpURLConnection 和 HttpsURLConnection 来实现相关功能。
下面案例实现了基于URL的简单请求响应,通过HttpURLConnection 获取连接,通过InputStream获取输入流,BitmapFactory 将数据流转换为 Bitmap,再将 Bitmap 通过线程的 Message发送出去,Handler 接收到消息就会通知 ImageView 显示出来。相关操作是通过点击按钮触发的。
接下来看相关代码的实现:XML文件:
java文件:
package com.example.myapplication;
import Androidx.appcompat.app.AppCompatActivity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class MainActivity extends AppCompatActivity {
String path = "https://s1.ax1x.com/2020/05/05/YkGCqg.png";
ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button) findViewById(R.id.btn);
imageView = (ImageView) findViewById(R.id.imageView);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
new Thread(new Runnable() {
@Override
public void run() {
Bitmap bm=getBitmap(path);
Message msg = new Message();
msg.what = 0;
msg.obj = bm;
System.out.println("000");
handle.sendMessage(msg);
}
}).start();
}
});
}
//在消息队列中实现对控件的更改
private Handler handle = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case 0:
System.out.println("111");
Bitmap bm=(Bitmap)msg.obj;
imageView.setImageBitmap(bm);
break;
}
};
};
private Bitmap getBitmap(String path) {
Bitmap bm = null;
try {
URL url = new URL(path);//创建一个URL对象,其参数为网络图片的链接地址
//使用一个URL对象开启一个链接
HttpURLConnection con = (HttpURLConnection) url.openConnection();
//设置相关参数
con.setDoInput(true);
con.setConnectTimeout(5000);//设置超时
con.setReadTimeout(2000);
con.connect();
InputStream is = con.getInputStream();//获取输入流
bm = BitmapFactory.decodeStream(is);//将输入流解码为Bitmap对象
is.close();
} catch (Exception e) {
e.printStackTrace();
}
return bm;
}
}
在这里要 注意 的是,千万不要忘记要在 manifest 文件中添加下面一行代码
进行上网权限的添加,否则就无法获取网络资源。
运行后点击按钮实现效果:
原创文章 19获赞 32访问量 1万+
关注
私信
展开阅读全文
作者:Sunqk5665
--结束END--
本文标题: Android中实现网络图片的获取
本文链接: https://lsjlt.com/news/29797.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0