how to disable sorting in hash map
807605Sep 18 2007 — edited Sep 18 2007im adding like this ,
Map Params = new HashMap();
params.put("orderYear", "1");
params.put("distrChannel", "2");
params.put("salesOffice", "3");
while iterating answer is coming like this
1
3
2
but i want
1
2
3
thanks in advance
gowri