views:

35

answers:

1

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.

+2  A: 

Yes, you can use Properties. Its load and store methods use a format very similar to the one you described.

Chris Jester-Young