JsonURL- https://dl.dropboxusercontent.com/s/rhk01nqlyj5gixl/jsonparsing.txt
Use of ArrayList will be better for you.See the following snippet,
Declare the following on the top,
public static ArrayList FriendName = new ArrayList();
And the following inside the try block after fetching the Name
FriendName .add(Name);
And you can easily fetch the values from the arraylist through the index value like follows,
String data=FriendName.get(0);