What is the best way to store the following table in JAVA
Is there anyway to get values using column names?
A B C D E F
1 25 54 55 77 14 5
2 2 43 11 25 10 31
3 5 55 4 8 5 54
Casey Hawthorne - 13 Oct 2005 08:03 GMT
Your thinking of a dictionary/associative array/name-value pairing to
map column names to column indices, which usually uses a hash.
>What is the best way to store the following table in JAVA
>
[quoted text clipped - 4 lines]
>2 2 43 11 25 10 31
>3 5 55 4 8 5 54
--
Regards,
Casey
Casey Hawthorne - 17 Oct 2005 18:31 GMT
Hopefully, by now, you've figured out some sort of character
manipulation!
--
Regards,
Casey