Ankur
Ankur

Reputation: 51110

Java library for extracting metadata

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

Answers (1)

C. K. Young
C. K. Young

Reputation: 223133

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

Upvotes: 2

Related Questions