I have a list of key-value pairs in the bundle
params.keySet ()
to be sorted alphabetically in the key column.
I tried a long way of extracting key-value pairs and sorting them using
Collections.sort (list)
and return it back to the new package.
But when I call params.keySet (). They are not sorted again. Any ideas. Is this their easy way?
source
share