我有一个arraylist,我在其中添加了从WebService获取的Json值。在给定的活动中,我希望使用这些值将其保存在另一个数组中,我使用该值转到链接。我得到了NullPointerException
。
这就是我想要的方式:
String[] mStrings = {
"https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-frc3/t1.0-9/10245314_566024470177594_4837108279586226729_n.jpg",
"http://manandhars.com/iexpire/" + arr.get(0) };
我实际上是在尝试使用json值来加载图像。我想我需要更多的概念性建议。
答案 0 :(得分:0)
使用
的调试器检查值arr
和
arr.get(0)
我很确定,其中一个是 null 。