I have a binary file which has an ASCII metadata header. The elements are of the form "tag = value". Do you know of any Java libraries that will simplify extraction of this metadata.
1 に答える
2
Yes, you can use Properties
. Its load
and store
methods use a format very similar to the one you described.
于 2010-02-12T03:28:06.443 に答える