我在嘗試解析此JSON時遇到了問題。JSON解析Android中無標籤的字符串
{
"bakso-roso-n'deso__-6.19_106.77":
{"Latitude":"-6.185488","Longitude":"106.77366","Distance":"90.89210930799594"},
"print-point-duri-kepa__-6.19_106.77":
{"Latitude":"-6.18599544813468","Longitude":"106.772603988647","Distance":"118.9849339548274"},
"apartment-menara-kebun-jeruk__-6.19_106.78":
{"Latitude":"-6.18530376709007","Longitude":"106.775222279179","Distance":"247.8816947606767"},
"ranch-market---pesanggrahan__-6.19_106.77":
{"Latitude":"-6.18761306472002","Longitude":"106.77343661177","Distance":"294.4255786871916"}
}
的問題是如何得到 「bakso-ROSO-n'deso __- 6.19_106.77」 的字符串。它沒有任何標籤。
謝謝。
現在經常處理的Json方式是這樣的:
String jstring = "{\"menu\": {\"id\": \"file\", \"value\": \"File\",\"popup\": {\"menuitem\": [{\"value\": \"New\", \"onclick\": \"CreateNewDoc()\"},{\"value\": \"Open\", \"onclick\": \"OpenDoc()\"},{\"value\": \"Close\", \"onclick\": \"CloseDoc()\"}]}}}";
try
{
jObject = new JSONObject(jstring);
我會怎麼做,對於這種類型的JSON的? jstring應該是什麼?
基本上我想把這些json字符串變成一些字典。
http://stackoverflow.com/questions/4407532/parse-json-object-with-string-and-value-only –