This loop inserts employee Ids like 1, 2, 4,.. 30.
for(int i=01;i<31;i++){
Employee e = new Employee();
e.setEmpId(i);
aList.add(e);
}
However, I require the ids in the format 01, 02, 03 .. so on. Is there a simple way I can achieve this ?