How to Iterate through List of Object arrays

前端 未结 3 1571
[愿得一人]
[愿得一人] 2020-12-16 18:38

So right now I have a program containing a piece of code that looks like this...

Criteria crit = session.createCriteria(Product.class);
ProjectionList projLi         


        
3条回答
  •  轮回少年
    2020-12-16 19:20

    You can probably do something like this:

    for (Object result : results) {
        // process each result
    }
    

提交回复
热议问题