본문 바로가기

Delphi/꿀팁

JSONObject에서 값 가져오기

var
  JsonObj: TJSONObject;
  JsonValue: TJSONValue;
begin
  ..  
  ShowMessage(JsonObj.GetValue('Name'));
  
  //또는 가져오려는 Type과 일치
  if not JsonObj.TryGetValue<TJSONValue>('Name', JsonValue) then 
    ShowMessage('Not Found!')
  else
    ShowMessage(JsonValue.ToString);
end;

2020.02.17 - [Delphi/간단하게] - 간단하게 JSON 파싱하기

2020.02.17 - [Delphi/꿀팁] - JSONArray에서 값 가져오기

 

반응형