如何解析这个json数据

时间:2013-06-03 12:50:49

标签: android android-layout android-intent

我正在获取json数据,我只需要图像链接,但我也得到了标记。

jsonObject.getString(SampadaRestApiContract.JSON_TAG_BOOK_IMAGE) Log.d("IMAGE LINK","LINK="+articleItem.getUriImagesSDcard());

我得到的输出是:     <img src="http://sampada.net/files/IMG_5789.JPG" width="1944" height="2592" alt="" />

1 个答案:

答案 0 :(得分:2)

这不再是JSON问题,因为您现在拥有一个包含HTML内容的字符串。 请参阅此答案以获取正则表达式:Regular Expression to extract src attribute from img tag