我正在使用 jquery.sheet 插件,它接受JSON
. JSON
格式为:
[
{ //repeats
metadata: {
columns: Column_Count,
rows: Row_Count,
title: ''
},
data: {
r{Row_Index}: { //repeats
c{Column_Index}: { //repeats
value: '',
style: '',
width: 0,
cl: {Classes used for styling}
}
}
}
}
];
一个简单的例子可能是:
[
{
metadata: {
columns: 1,
rows: 1,
title: 'Private Limited'
},
data: {
r0: {
c0: {
value: 'A',
style: '',
width: 0
}
}
}
}
]
我需要解析这个JSON
吗Java
?我知道我可以使用谷歌的gson
库来解析。但我不知道该怎么做。