Reputation: 51110
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.
Upvotes: 1
Views: 839
Reputation: 223133
Yes, you can use Properties
. Its load
and store
methods use a format very similar to the one you described.
Upvotes: 2