How to get datas from List<Object> (Java)?

前端 未结 5 1992
我在风中等你
我在风中等你 2020-12-31 19:12

I`m new in Java and have a problem with showing data from a list of objects. I have a simple method, which should collect data across multiple tables and return it to my con

5条回答
  •  孤独总比滥情好
    2020-12-31 19:40

    Thanks All for your responses. Good solution was to use 'brain`s' method:

    List list = getHouseInfo();
    for (int i=0; i
    
    

    Problem solved. Thanks again.

    提交回复
    热议问题