Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi Is there any library available to parse KML ?

share|improve this question

3 Answers

You'll be making your own library, but you won't be writing any code.

I suggest looking at http://code.google.com/apis/kml/documentation/kmlreference.html. From there you can get the XML Schema. Once you've got the schema you can use JAXB to generate an object tree to easily parse and write KML.

This may also be a good resource, looks like someone else has already done it!

share|improve this answer
1  
I went down this road for a little practice, there's a little hiccup in that there are a couple of elements that collide when the schema is run through the compiler. Nothing major, but be prepared to write a few custom bindings. – CurtainDog Mar 16 '11 at 3:37

This library looks promising as well:

http://code.google.com/p/javaapiforkml/

share|improve this answer

Since it is xml you can read the data with any parser but still there is an lib available at http://code.google.com/p/libkml/ it has bindings for java but the lib is in C++

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.