以下代码是Web服务响应格式。此类有两个引用变量 到两个内部静态类。 请让我知道如何以有效的方式阅读。
public class DataResponse {
protected DataResponse.Head head ;
protected DataResponse.Result result ;
public static class Result {
protected List<DataResponse.Result.Record> record;
public static class Record {
protected String businesstypec;
protected String part
// several other variables
public static class PARTR {
protected String prefix;
protected String suffix;
}
}
public static class Head {
// some more variables
}
// please assume getter and setters for head,result,record,prefix and suffix variables
}
答案 0 :(得分:2)
您获得了想要阅读的instance
Record
并致电public
内的variable
class
以获取instance
那个variable
然后在那个内部类中调用(再次,public
)variables
。似乎效率很高。
String firstPrefix = result.record.get(0).partrVariableThatsNotInYourExample.prefix;