在我的项目中,我使用XML-RPC方法.execute
从Web服务器获取Web服务器的结果,该方法返回对象。
public List getAll(final String[] fields){
List<Object> records = new ArrayList<>() ;
try {
records = asList((Object[])this.models.execute("execute_kw", asList(
DB, this.uid, PASSWORD,
"res.partner", "search_read",
asList(asList(
/*asList("is_company", "=", true),
asList("customer", "=", true)*/)),
new HashMap() {{
put("fields", asList(fields));
}}
)));
} catch (XmlRpcException e) {
e.printStackTrace();
}
return records;
}
我得到这样的东西: enter image description here
如何阅读每个对象属性?