aspose file tools
The moose likes Beginning Java and the fly likes hashtable in java Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "hashtable in java" Watch "hashtable in java" New topic
Author

hashtable in java

vijayapriya thirumurugan
Greenhorn

Joined: Apr 03, 2009
Posts: 16

hello sir,

I have hashtable consists of keys with their corresponding values. While entering the values in hashtable it's in ascending order. but in printing statement the hashtable comes in descending order. I used Enumeration to print the values. What's the mechanism behind that. can you explain me. Because i need in ascending order only. i'm waiting..
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Hashtable and HashMap don't keep order at all. If you need order you should check out TreeMap (user defined order based on the keys) or LinkedHashMap (order based on insertion order / access order).


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: hashtable in java
 
Similar Threads
Collection Class Implementation Features (Contributions Requested)
It's a bird, it's a plane, no, it's a ... bubble sort?
static variables in JavaScript or equivalent ?
how can be retrieve from any collection into our own order?
Sorting HashTable by values