Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got a json file from google map from this url

http://maps.google.co.kr?q=busan&output=json

The problem is that my SBJson could not parse the string.

The json formate I got is like

{name:"steven", age:"26"}

but the sample formate is like

{"name":"steven", "age":"26"}

My code is

NSError *error = nil;

NSString *urlString = [NSString stringWithFormat:@"http://maps.google.co.kr?q=%@&output=json", 
                       [address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
//#define NSKoreanEncoding  0x80000422
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlString] options:kNilOptions error:&error];
NSString *dataString = [[NSString alloc] initWithData:data encoding:NSKoreanEncoding];

//remove the while(1); from data
dataString = [dataString substringFromIndex:9];

// Create SBJSON object to parse JSON
SBJsonParser *parser = [[SBJsonParser alloc] init];
NSMutableDictionary *dict = [parser objectWithString:dataString error:&error];

NSLog(@"ERROR: %@", error);
NSLog(@"dict: %@", dict);
NSLog(@"dataString: %@",dataString);

//Samples can get result
NSString *jsonStr  = @"{\"name\":\"jia\",\"age\":\"24\"}";  
NSString *jsonStr2 = @"[\"1\",\"2\"]";  

SBJsonParser *jsonParser = [[SBJsonParser alloc] init];  

dict = [jsonParser objectWithString:jsonStr];  
NSLog(@"%@",dict);  

NSMutableArray *arr = [jsonParser objectWithString:jsonStr2];  
NSLog(@"%@",arr); 

Below is several lines of Java code that the same as my target.

String jsonString = sb.toString().substring(9);//remove while(1);

Log.d(TAG_SERVER, jsonString);
JSONObject jj = new JSONObject(jsonString);
JSONObject overlays = jj.getJSONObject("overlays");
JSONArray markers = overlays.getJSONArray("markers");

If someone knows how to do it, please tell me~~

Thanks~~

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.