투케이2K

23. (Objective-C/objc) url 인코딩 (encode) , 디코딩 (decode) 수행 실시 - URLHost 본문

Objective-C

23. (Objective-C/objc) url 인코딩 (encode) , 디코딩 (decode) 수행 실시 - URLHost

투케이2K 2022. 2. 24. 14:26

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[testMain 함수]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("=============================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("=============================== \n");
    printf("\n");
    
    // [초기 문자열 데이터 선언]
    NSString *strData = @"h@1ㅎA";
    
    
    // [URL 인코딩 수행 실시 : 호스트 방식 설정]
    NSString *encodeData = [strData stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]];
    
    
    // [URL 디코딩 수행 실시]
    NSString *decodeData = [encodeData stringByRemovingPercentEncoding];
    
    
    // [결과 출력 실시]
    printf("\n");
    printf("=============================== \n");
    printf("[원본 :: %s] \n", strData.description.UTF8String);
    printf("[URL 인코딩 :: %s] \n", encodeData.description.UTF8String);
    printf("[URL 디코딩 :: %s] \n", decodeData.description.UTF8String);
    printf("=============================== \n");
    printf("\n");
}
 

[결과 출력]


반응형
Comments