json图像难以显示

时间:2012-02-15 13:21:30

标签: android image json

我需要帮助显示我从JSON服务器上提取的图像。

返回JSON值:

          "photoThumbnailUrl": "http://media.xxx.co.uk/75k/74944/18863829
          /74944_OSI1000044_IMG_00_0000_max_200x138.jpg"

我只需要在我的应用程序中显示此图像。我该怎么做?

2 个答案:

答案 0 :(得分:0)

使用一些asynctask解析JSON将映像下载到本地文件 这是一个样本 Trying to use AsyncTask do download some image files 然后使用ImageView来反映它: 这是一个链接 Show Image View from file path?


希望有所帮助

答案 1 :(得分:0)

试试这个,让我知道发生了什么......

URL newurl;
try
{
newurl = new URL("http://media.xxx.co.uk/75k/74944/18863829/74944_OSI1000044_IMG_00_0000_max_200x138.jpg");
bitmap = BitmapFactory.decodeStream(newurl.openConnection().getInputStream());
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
img.setImageBitmap(bitmap);