6

i am having the list myEmpls

List myEmpls = new ArrayList();

In this list i have added used defined objects.

LogConf e = getLogs(el);
    //add it to list
 myEmpls.add(e);

Now how to iterate the list of objects and get the values from this objects. How to do this?

2 Answers 2

17

You could just google this and you would find tons of solutions.. But here is the code:

for(LogConf element : myEmpls) {
  System.out.println(element.getValue());
}

You should also get used to define the type of the elements in the list:

List<LogConf> myEmpls = new ArrayList<LogConf>();
Sign up to request clarification or add additional context in comments.

Comments

3

I know its been some time since this post was made. You can also use the Iterator.

              List myEmpls = new ArrayList();
              Iterator itr = myEmpls.iterator();

              while(itr.hasNext()) {   
                   LogConf Logobj = (LogConf) itr.next();
                   System.out.println(Logobj.getterName());
              }

Hope this helps someone.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.