GeoJSON – GeoJSON Java Library

geojsonjavajson

I am creating a Java web service that receives GeoJSON.

Does anyone know a java library to manage GeoJSON?

Best Answer

Geotools as a support for geojson. See here.

Otherwise, you could simply use a typical JSON parser (such as json-simple) together with the geoJSON spec, which is really easy to use.

The best solution depends on what you want to do with the parsed information.