try { //1.创建URL URL url=new URL(picUrl); //2.打开连接 HttpURLConnection 是 URLConnection 的子类 HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); //3.进行设置 urlConnection.setRequestMethod("GET");//请求方式 GET要大写 urlConnection.setReadTimeout(5000
请求Url 图片
最新推荐文章于 2024-07-08 17:19:37 发布
该博客介绍了如何通过Java的HttpURLConnection类实现从指定URL下载图片。首先创建URL对象,然后打开连接并设置请求方法及超时时间。接着,检查响应码,如果为200表示成功,再获取输入流并将流转化为Bitmap对象。最后,可以将Bitmap发送给Handler进行显示。
摘要由CSDN通过智能技术生成