Contents

조회 수 3422 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
HTTP(GET, POST) 프로토콜을 이용하여 서버와의 통신을 할때는 문자열의 인코딩을 신경써야 합니다.
Ajax와 같은 웹 프로그래밍에서는 URLEncode, URLDecode를 사용하는데요~

NSString 에서도 아래와 같이 변환해서 사용할 수 있습니다.
// 오리지널 메시지
NSString *message = @"Hello~
Welcome to hooni.net";
 
// URL Encode
NSString *escaped = [message
    stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"escaped string :
%@", escaped);
 
// URL Decode
NSString *decoded = [escaped
    stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"decoded string :
%@", decoded);


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
909 Database [mysql] 루트 암호 초기화 hooni 2013.04.23 11046
908 Database [mysql] MySQL 한글 깨짐 현상 해결하기(UTF8) hooni 2017.12.01 5478
907 Database [mysql] MySql 에서 정렬 후 그룹 하는 방법 hooni 2015.05.07 3010
906 Database [mysql] MySQL 백업 및 복구 hooni 2019.11.22 825
905 Database [mysql] MySQL 데이터베이스 추가 및 사용자 추가 hooni 2019.11.22 670
904 System/OS [mysql] mysql user 생성시 ERROR 1364 hooni 2013.04.25 28507
903 System/OS [mysql] MySQL server has gone away 에러 대응 hooni 2013.05.29 19226
902 Database [mysql] MySql DB/테이블 사이즈 확인을 위한 쿼리 hooni 2019.11.22 664
901 Database [mysql] MacOS에 MySQL 설치, 설정, 암호 재설정 file hooni 2017.12.15 1471
900 Database [mysql] error while loading shared libraries: libmysqlclient.so.10: hooni 2003.04.23 12664
899 Database [mysql] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. hooni 2017.12.15 1210
898 Database [mysql] DB->Text, Text->DB 변환 hooni 2003.04.23 12129
Board Pagination Prev 1 ... 18 19 20 21 22 23 24 25 26 27 ... 98 Next
/ 98