Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any free library that I may leverage for parsing a unique settings file described like so (taken from actual file). Perhaps something like ini4j (perhaps ini4j is customizeable enough that I could use it maybe?). Just checking before I start slogging away at writing my own :(

/*** This file specifies settings used by the __. Each
/*** line is delimited by colons. This file contains global as well as
/*** program specific settings.  First part is always the variable name.
/*** Second part can be a single or a wildcarded program id, in which
/*** case the setting will be program specific. In the case of global
/*** variables, the second part will be the actual setting. The third
/*** and subsequent parts will only appear for program specific variables
/*** and will be the settings for those variables.  Any comments at the
/*** end of the line have to be preceded by a colon, in order to separate
/*** it from the rest of the line.

The body of my files look like this (just an example):

DELIMITER=;
FROM_DIR;msc*;/usr/foo/bar
FROM_DIR;msd*;/usr/foo/bar
LOG_DIR;ms*;/usr/foo/logs
DUMP_FLAG;N
MAX_JOBS;8
share|improve this question
It's not an INI file, so an INI parser won't help you. – Borealid Jun 30 '11 at 4:29
I know, that's why I said "like ini4j" :P – Dominic Bou-Samra Jun 30 '11 at 4:31

2 Answers

up vote 1 down vote accepted

This property file format looks sufficiently custom that any parsing library you go with will add more complexity that it is worth. My recommendation is the only external library you need here is JUnit :) However if you really want to do a learning exercise checkout http://www.antlr.org/

share|improve this answer
Heh thanks man, I suspected I will need to roll my own. – Dominic Bou-Samra Jun 30 '11 at 4:39
Sure thing, and checkout ANTLR if you've got a couple days of free time :) – Abdullah Jibaly Jun 30 '11 at 4:42

You could parse the first line yourself and then use a CSV-Parser like opencsv, which is configured using the delimiter in line #1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.