-4

Possible Duplicate:
Convert a JSON string to object in Java?

Below is my json structure .I want to convert it to java object .Can any help me to parse this jason object

{"response":{"@id":"","":{"":[{"":"","":"","":"","":"","":"","":"","":"","":"","":"","":""},{},{},{},.....{}]}}}

Thanks
Community
  • 1
  • 1

1 Answers1

0

That is not well-formed JSON. For a start, you have multiple attributes with the same name. There's no Java JSON library that could represent that.

Stephen C
  • 698,415
  • 94
  • 811
  • 1,216