투케이2K

76. (swift/xcode) http 요청 response 응답 데이터 유니코드 (unicode) 한글 깨짐 데이터 파싱 수행 실시 본문

Swift

76. (swift/xcode) http 요청 response 응답 데이터 유니코드 (unicode) 한글 깨짐 데이터 파싱 수행 실시

투케이2K 2022. 4. 23. 20:31

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : SWIFT

 

[소스 코드]

            // [response json 데이터를 파싱 실시]
            ///*
            do {
                // [응답 전체 data 를 json to dictionary 로 변환 실시]
                let dicCreate = try JSONSerialization.jsonObject(with: Data(resultData), options: []) as! [String:Any]
                
                // [jsonArray In jsonObject 형식 데이터를 파싱 실시 : 유니코드 형식 문자열이 자동으로 변환됨]
                let arrayData = dicCreate["result"] as! Array<Dictionary<String, Any>>
                print("")
                print("====================================")
                print("[\(self.ACTIVITY_NAME) >> requestGet :: Json Object 형식 문자열을 딕셔너리로 변환 수행 실시]")
                print("-------------------------------")
                print("dicCreate :: ", arrayData)
                print("====================================")
                print("")
            } catch {
                print("")
                print("====================================")
                print("[\(self.ACTIVITY_NAME) >> requestGet :: Json Object 형식 문자열을 딕셔너리로 변환 수행 실시]")
                print("-------------------------------")
                print("catch :: ", error.localizedDescription)
                print("====================================")
                print("")
            }
            // */
 

[결과 출력]

 

 
반응형
Comments