mrroboaat
mrroboaat

Reputation: 5692

Jackson 2 deserialization

I have a problem using google geocoding api. For example, with this url http://maps.google.com/maps/api/geocode/json?latlng=47.3195254,5.0430687&sensor=true, I want to parse the json with jackson 2 to create the POJO.

So my class is

public class GeocoderResult {

@JsonProperty("results") private List<GeocoderGoog> geocoder;
@JsonProperty("status") private String status;

public List<GeocoderGoog> getGeocoder() {
    return geocoder;
}
public String getStatus() {
    return status;
}

}

To deserialize json, I use

HttpURLConnection connection = (HttpURLConnection) new URL(baseUrl).openConnection();
ObjectMapper mapper = new ObjectMapper();
// disable exceptions when there is unknown properties
mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
int statusCode = connection.getResponseCode();
Log.d(Constants.D_TAG, "Status : "+statusCode);
if (statusCode == HttpURLConnection.HTTP_OK) {  // 200
    InputStream is = new BufferedInputStream(connection.getInputStream());
    status = (Status) mapper.readValue(is, GeocoderResult.class);
}

I have the following error :

09:38:42.737 Thread-24889 An exception occurred during request network execution :Unexpected close marker '}': expected ']' (for ROOT starting at [Source: java.io.BufferedInputStream@428a1840; line: 1, column: 0])                                       
 at [Source: java.io.BufferedInputStream@428a1840; line: 2, column: 14]
 com.fasterxml.jackson.core.JsonParseException: Unexpected close marker '}': expected ']' (for ROOT starting at [Source: java.io.BufferedInputStream@428a1840; line: 1, column: 0])

I don't understand where is the problem ...

ps : I use jackson-core, jackson-databind and jackson-annotations 2.1.4

Upvotes: 1

Views: 878

Answers (1)

gunar
gunar

Reputation: 14710

I'm a fan of Jackson and I can say you made me curious. I used the URL you exposed and make it work like below. Used the current API version: 2.2.3

Model classes:

GeocoderResult

public class GeocoderResult {

    @JsonProperty("results")
    private ArrayList<GeocoderGoog> geocoder;

    @JsonProperty("status")
    private String status;

    public ArrayList<GeocoderGoog> getGeocoder() {
        return geocoder;
    }

    public String getStatus() {
        return status;
    }
}

GeocoderGoog

public class GeocoderGoog {

    @JsonProperty("address_components")
    private ArrayList<AddressComponent> addressComponents;

    @JsonProperty("formatted_address")
    private String formattedAddress;

    private ArrayList<String> types;

    private Geometry geometry;

    public ArrayList<AddressComponent> getAddressComponents() {
        return addressComponents;
    }

    public String getFormattedAddress() {
        return formattedAddress;
    }

    public ArrayList<String> getTypes() {
        return types;
    }

    public Geometry getGeometry() {
        return geometry;
    }

}

AddressComponent

public class AddressComponent {
    @JsonProperty("long_name")
    private String longName;

    @JsonProperty("short_name")
    private String shortName;

    private ArrayList<String> types;

    public String getLongName() {
        return longName;
    }

    public String getShortName() {
        return shortName;
    }

    public ArrayList<String> getTypes() {
        return types;
    }

}

A Coordinates used in other classes

public class Coordinates {
    private double lat;
    private double lng;

    public double getLat() {
        return lat;
    }

    public void setLat(double lat) {
        this.lat = lat;
    }

    public double getLng() {
        return lng;
    }

    public void setLng(double lng) {
        this.lng = lng;
    }

}

and a Geometry with Viewport:

public class Geometry {
    private Coordinates location;

    @JsonProperty("location_type")
    private String locationType;

    private ViewPort viewport;

    public Coordinates getLocation() {
        return location;
    }

    public String getLocationType() {
        return locationType;
    }

    public ViewPort getViewport() {
        return viewport;
    }

    public static class ViewPort {
        private Coordinates northeast;
        private Coordinates southwest;

        public Coordinates getNortheast() {
            return northeast;
        }

        public Coordinates getSouthwest() {
            return southwest;
        }

    }
}

and to wrap it up - for me this worked from first attempt:

protected void performJackson() {
    new AsyncTask<Void, Void, Void>() {
        @Override
        protected Void doInBackground(Void... params) {
            try {
                String baseUrl = "http://maps.google.com/maps/api/geocode/json?latlng=47.3195254,5.0430687&sensor=true";
                HttpURLConnection connection = (HttpURLConnection) new URL(baseUrl).openConnection();
                ObjectMapper mapper = new ObjectMapper();
                // disable exceptions when there is unknown properties
                mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
                int statusCode = connection.getResponseCode();
                Log.d("SJackson", "Status : " + statusCode);
                if (statusCode == HttpURLConnection.HTTP_OK) { // 200
                    InputStream is = new BufferedInputStream(connection.getInputStream());
                    GeocoderResult result = mapper.readValue(is, GeocoderResult.class);
                    Log.d("SJackson", "Done: " + (result != null));
                }
            } catch (Exception ex) {
                Log.e("SJackson", null, ex);
            }

            return null;
        }
    }.execute();
}

Upvotes: 3

Related Questions