Android将图像从服务器获取到SQLite数据库
我需要在新闻栏目中显示图片,当没有互联网连接时,我想离线阅读。我用标题和正文来做,但对于新闻图片,它太慢了我怎么能改进呢?
我试图获取字符串url并将其存储为字节数组:
public byte[] downloadImage(String urlImg) throws Exception{
URL url = new URL(urlImg);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setReadTimeout(10000);
con.setConnectTimeout(10000);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
Bitmap b = BitmapFactory.decodeStream(con.getInputStream());
b.compress(Bitmap.CompressFormat.WEBP, 0, bos);
} finally {
con.disconnect();
}
return bos.toByteArray();
}
然后我在doInBackground中调用它,如下所示:
@Override
protected Boolean doInBackground(String... urls) {
try {
HttpGet httppost = new HttpGet("http://www.77-webdev.com/clients/thebeautyworkshop/news.json");
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(httppost);
int status = response.getStatusLine().getStatusCode();
if (status == 200){
DataSource.deleteAll();
HttpEntity entity = response.getEntity();
String data = EntityUtils.toString(entity);
JSONObject jsonObject = new JSONObject(data);
JSONArray jsonArray = jsonObject.getJSONArray("News");
News news = new News();
for (int i=0; i < jsonArray.length();i++){
JSONObject JObject = jsonArray.getJSONObject(i);
String Title = JObject.getString("title");
String body = JObject.getString("mobile_body");
String Image = JObject.getString("image");
String lang = JObject.getString("lang");
byte[] IMG = downloadImage(Image);
news.setTitle(Title);
news.setMobile_body(body);
news.setImageB(IMG);
news.setLang(lang);
DataSource.create(news);
newsList.add(news);
}
return true;
}
} catch (ParseException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (JSONException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
但也是因为我为每张图片连接
答案 0 :(得分:0)
如果您知道要放置图像的视图,可以使用Square's Picasso来简化图像处理:
Picasso
.with(context)
.load(Image)
.into(imageView);