I'm kind of new to dealing with Json and other web-related formats, and I want to basically take the "stuff" in this json, and store some of the information into variables in a Java program. If my understanding is correct, this process is called deserialization, and I've heard about using Gson to do this, but I'm not sure if that would be the best method. In a pseudo-code example, this is what I want to accomplish:
Object obj = JsonThing.getJsonFromUrl("http://steamcommunity.com/market/search/render/?query=&start=0&count=10&search_descriptions=0&sort_column=quantity&sort_dir=desc&appid=730");
Double price = obj.itemPrice;
String name = obj.itemName;
Where "price" and "name" would be the first of each element in th json that I want to get, and it would loop through to get the others (maybe put them in an array?). I don't know how this would work exactly, so could someone give me a code example?