Parsing Json Response sent from Google Distance Matrix API

1k Views Asked by At

This json occurs when a destination or origin is outside of the uk, therefore not giving me any results! I need to check for this for a null check so i dont receive null pointer exception

JSON RESULT:

{
"destination_addresses" : [ "Durham, NC, USA" ],
"origin_addresses" : [ "Lancashire, UK" ],
"rows" : [
  {
     "elements" : [
        {
           "status" : "ZERO_RESULTS"
        }
     ]
  }
],

"status" : "OK" }

Code:

public static void extractJsonFromRequest(GoogleResponsePojo response) {
    String destinationAddress = 
    response.getDestination_addresses().get(0);
    String timeTaken = 
response.getRows().get(0).getElements().get(0).getDuration().getText();
    String originAddress = response.getOrigin_addresses().get(0);

    System.out.println("It will take ** "+  timeTaken + " ** to walk 
from " + originAddress + " to " + destinationAddress);
}

Google Reponse POJO which is structure of json:

public class GoogleResponsePojo {

private List<String> destination_addresses;
private List<String> origin_addresses;
private List<Rows> rows;

public List<String> getDestination_addresses() {
    return destination_addresses;
}

public void setDestination_addresses(List<String> destination_addresses) {
    this.destination_addresses = destination_addresses;
}

public List<String> getOrigin_addresses() {
    return origin_addresses;
}

public void setOrigin_addresses(List<String> origin_addresses) {
    this.origin_addresses = origin_addresses;
}

public List<Rows> getRows() {
    return rows;
}

public void setRows(List<Rows> rows) {
    this.rows = rows;
}
}

class Rows {
private List<Element> elements;

public List<Element> getElements() {
    return elements;
}

public void setElements(List<Element> elements) {
    this.elements = elements;
}
}

class Element {
private TextValue distance;
private TextValue duration;

public TextValue getDistance() {
    return distance;
}

public void setDistance(TextValue distance) {
    this.distance = distance;
}

public TextValue getDuration() {
    return duration;
}

public void setDuration(TextValue duration) {
    this.duration = duration;
}
}

class TextValue {
private String text;
private  String value;

public String getText() {
    return text;
}

public void setText(String text) {
    this.text = text;
}

public String getValue() {
    return value;
}

public void setValue(String value) {
    this.value = value;
}
}

I essentially need to just parse the json below so that i can say (if status != ZERO_RESULTS ) save the response else throw an exception! Probably easy but im struggling! Thanks so much!

1

There are 1 best solutions below

17
On

Change GoogleResponsePojo to:

 public class GoogleResponsePojo {

    private List<String> destination_addresses;
    private List<String> origin_addresses;
    private List<Rows> rows;

    public void setDestination_addresses(List<String> destination_addresses) {
        this.destination_addresses = destination_addresses;
    }

    public void setOrigin_addresses(List<String> origin_addresses) {
        this.origin_addresses = origin_addresses;
    }

    public void setRows(List<Rows> rows) {
        this.rows = rows;
    }

    //getters
}


private static class Rows{
    private List<Element> elements;

    public void setElements(List<Element> elements) {
        this.elements = elements;
    }

    //getters
}

private static class Element{
    private TextValue distance;
    private TextValue duration;

    public void setDistance(TextValue distance) {
        this.distance = distance;
    }

    public void setDuration(TextValue duration) {
        this.duration = duration;
    }

    //getters
}

private static class TextValue{
    private String text;
    private  String value;

    public void setText(String text) {
        this.text = text;
    }

    public void setValue(String value) {
        this.value = value;
    }

    //getters
}

You can take duration as following:

GoogleResponsePojo name = gson.fromJson(response.toString(),GoogleResponsePojo.class);

name.getRows().get(0).getDuration().getText();

And I recommend use http-request built on apache http api. Its simple to use:

 public static final String BASE_URL = "https://maps.googleapis.com/maps/api/distancematrix/json";

private static final HttpRequest<GoogleResponsePojo> HTTP_REQUEST =
        HttpRequestBuilder.createGet(BASE_URL, GoogleResponsePojo.class)
                .addDefaultRequestParameter("origins", "Seattle")
                .addDefaultRequestParameter("destinations", "San+Francisco")
                .addDefaultRequestParameter("key", "***")
                .build();

@GET
@Produces(MediaType.APPLICATION_JSON)
public static void updateTestExecutionDetails() throws IOException {

    ResponseHandler<GoogleResponsePojo> responseHandler = HTTP_REQUEST.execute();

    GoogleResponsePojo name = responseHandler.orElseThrow(); // throws ResponseException when status code != 200

    System.out.println(name.getDestination_addresses().get(0));
    System.out.println(name.getRows().get(0).getElements().get(0).getDuration().getText());
    System.out.println(name.getOrigin_addresses().get(0));
}