所以我有Object
:
InstagramUserSummary(super=test, is_verified=false, profile_pic_id=test, is_favorite=false, is_private=true, username=test, pk=test, profile_pic_url=test, has_anonymous_profile_picture=false, full_name=test)
如何从此对象获取用户名?我可以把它变成一个列表吗?
编辑:
List List = result2.getUsers();
Object list1 = List.get(1); <--- this is the list I showed above!
Log.d("list", String.valueOf(list1)); <--- this is how I show it/display it.
编辑:
我应该将对象更改为....(这是你如何解决这个问题)
编辑:如何解析此列表?
编辑:
我有这个对象,当String.valueOf(object))
时,它会返回:
InstagramUserSummary(super=test, is_verified=false, profile_pic_id=test, is_favorite=false, is_private=true, username=test, pk=121, profile_pic_url=test, has_anonymous_profile_picture=false, full_name=test)
如何将此对象转换为列表或散列图(因此我可以得到值相等的值):
[super=test, is_verified=false, profile_pic_id=test, is_favorite=false, is_private=true, username=test, pk=121, profile_pic_url=test, has_anonymous_profile_picture=false, full_name=test]