Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Deezer API 来请求用户最喜欢的艺术家,http: //api.deezer.com/user/me/artists,但是结果按 id 排序,我怎么能像 AZ 一样按艺术家的名字排序
填充艺术家的所有数据ArrayList并仅使用Collections.sort(artistList); 这将起作用,因为其中的项目artistList是字符串的,并且字符串实现了 Comparable。
ArrayList
Collections.sort(artistList);
artistList
我不知道 deezer API,但为什么不将结果解析为 ArrayList 中的对象,然后按名称属性对其进行排序?