热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

如何在delphi中对TJSONArray进行排序

如何解决《如何在delphi中对TJSONArray进行排序》经验,为你挑选了1个好方法。

我在delphi中有一个充满TJSONObjects的TJSONArray。给定所有json对象共享的密钥,有没有一种方法可以对json数组进行排序?



1> Graymatter..:

我前一段时间遇到了这个问题。我没有找到任何可以进行排序的方法,所以最终建立了自己的方法:

procedure SortJsonArray(aJsonArray: TJsonArray)
var
  cntr: Integer;
  elementList: TList;
begin
  // Sort the elements. We have to sort them because they change constantly
  elementList := TList.Create;
  try
    // Get the elements
    for cntr := 0 to aJsonArray.Count - 1 do
      elementList.Add(aJsonArray.Items[cntr]);
    elementList.Sort(TComparer.Construct(
        function(const Left, Right: TJSONValue): Integer
        var
          leftObject: TJSONObject;
          rightObject: TJSONObject;
        begin            
          // You should do some error checking here and not just cast blindly
          leftObject := TJSONObject(Left);
          rightObject := TJSONObject(Right);
          // Compare here. I am just comparing the ToStrings but you will probably
          // want to compare something else.
          Result := 
              TComparer.Default.Compare(leftObject.ToString, rightObject.ToString);
        end));
    aJsonArray.SetElements(elementList);
  except
    on E: Exception do
    begin
      // We only free the element list when there is an exception because SetElements 
      // takes ownership of the list.
      elementList.Free;
      raise;
    end;
  end;
end;

您需要确保不释放元素列表,因为在传递列表时SetElements会接管列表。


推荐阅读
author-avatar
aizhezhe
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有