R
Rebus77
Guys,
I am trying to write a class similar to java.lang.Properties, except
that the entries should be in order (alphabetically), and it should
also be able to store binary data(ie public key and digital signature).
.... but I do not want to reinvert the wheel. Is there such a class in
the JDK? or something similar?
I am trying to use SortedMap, and write out the entries one by one in a
file, using Base64 to encode the binary data... but that puts '='s in
.... I am having some trouble reading the binary data back.
I am trying to write a class similar to java.lang.Properties, except
that the entries should be in order (alphabetically), and it should
also be able to store binary data(ie public key and digital signature).
.... but I do not want to reinvert the wheel. Is there such a class in
the JDK? or something similar?
I am trying to use SortedMap, and write out the entries one by one in a
file, using Base64 to encode the binary data... but that puts '='s in
.... I am having some trouble reading the binary data back.