0

我想在 ADF 移动设备中使用迭代器以编程方式读取数据。我的代码是:

try {
    ValueExpression vex = AdfmfJavaUtilities.getValueExpression("#{bindings.WeatherDescriptionIterator}", Object.class);
    AmxIteratorBinding iter = (AmxIteratorBinding)vex.getValue(AdfmfJavaUtilities.getAdfELContext());
    GenericType row = null;
    BasicIterator bIter = iter.getIterator();
    iter.getIterator().first();
    ArrayList employees = new ArrayList();
    for(int i = 0; i < iter.getIterator().getTotalRowCount(); i++) {
        row = (GenericType)iter.getCurrentRow();
        String phone = "";
        String email = "";
        if(row.getAttribute("Description") != null)
            phone = row.getAttribute("Description").toString();
        if(row.getAttribute("WeatherID") != null)
            email = row.getAttribute("WeatherID").toString();

        setTempValue(phone + " " + email);

        iter.getIterator().next();

    }
}
catch(Exception e1) {
    AdfException ex = new AdfException(""+e1.getLocalizedMessage(), AdfException.ERROR );
    throw ex;
}

我收到错误:-> 找不到属性绑定

4

1 回答 1

0

表达式应该是: ValueExpression vex = AdfmfJavaUtilities.getValueExpression("#bindings.WeatherDescriptionIterator.iteratorBinding}", Object.class);

于 2014-06-19T11:33:24.893 回答