**iOS發JSON請求中字串加轉義,返回的JSON去轉義

來源:互聯網
上載者:User

標籤:

 

iOS中使用NSSerialization把對象轉為JSON字串後,多出來反斜線的問題

http://segmentfault.com/q/1010000000576646

   NSDictionary *dic = @{@"url": @"http://..."};                                                                                                                                                NSLog(@"%@", dic);   NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dic options:NSJSONWritingPrettyPrinted error:nil];   NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];   NSLog(@"%@", jsonString);

執行結果:

2014-06-12 14:44:19.427 main[64877:1322484] {                                                                                                                                                   url = "http://...";                                                                                                                                                                     }                                                                                                                                                                                           2014-06-12 14:44:19.429 main[64877:1322484] {                                                                                                                                                 "url" : "http:\/\/..."                                                                                                                                                                    }                         

轉換後的json字串中url地址被轉義了 :(

使用字串替換可以事後彌補:

[jsonString stringByReplacingOccurrencesOfString:@"\\" withString:@""];

--------------------------------------------------------------------------
iOS 去除JSON裡的轉義符

今天幫朋友弄這個問題,json返回全都是帶‘\‘的,於是要去掉這個反斜線,但是OC裡面的‘\‘是轉義符,不能直接用@"\"之類的表示,一頓搜尋之後,找到了OC對逸出字元的表示方法,如下:

\a - Sound alert
\b - 退格
\f - Form feed
\n - 換行
\r - 斷行符號
\t - 水平定位字元
\v - 垂直定位字元
\\ - 反斜線
\" - 雙引號
\‘ - 單引號

那麼知道如何表示‘\‘,去掉這個就是一個遍曆的事了.代碼如下:

1 NSMutableString *responseString = [NSMutableString stringWithString:[request responseString]];2     NSString *character = nil;3     for (int i = 0; i < responseString.length; i ++) {4         character = [responseString substringWithRange:NSMakeRange(i, 1)];5         if ([character isEqualToString:@"\\"])6             [responseString deleteCharactersInRange:NSMakeRange(i, 1)];7     }

當然 去除其他的轉義符號同理.

 

**iOS發JSON請求中字串加轉義,返回的JSON去轉義

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.