android怎么通过httpclient方式获取服务器中的图片并显示到viewfillpper

android怎么通过httpclient方式获取服务器中的图片并显示到viewfillpper,第1张

直接获取bitmap对象

// 传输网络

public Bitmap getPic(String uriPic) {

URL imageUrl = null;

Bitmap bitmap = null;

try {

imageUrl = new URL(uriPic);

} catch (MalformedURLException e) {

eprintStackTrace();

}

try {

>

openConnection();

connconnect();

InputStream is = conngetInputStream();

bitmap = BitmapFactorydecodeStream(is);

isclose();

} catch (IOException e) {

eprintStackTrace();

}

return bitmap;

}

去session的官网下载一个java的版本 我记得是session是基于servlet的 只要在webxml里面配置几个就可以调用java自己定义的接口了。也可以和spring一起使用。具体怎么用 可以搜索:session+spring


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10323024.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-07
下一篇 2023-05-07

发表评论

登录后才能评论

评论列表(0条)

保存