Possible Duplicate:
A better Java JSON library?
Hi,
I have a json file like this:
workloads = [
{
total: 5,
attributes:
{
taskA:1,
taskB:2
}
}
]
Thanks in advance
Hi, I have a json file like this:
Thanks in advance |
|||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
This is not a valid JSon object. to validate your json you can use for example jsonlint. Have a look at the Json grammar here To know which library you can use to read json from java look here A better Java JSON library? |
|||
|
|
|
There are plenty of links on the JSON site: http://json.org/java/ |
|||
|
|