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

I have written an application which outputs data as XML. However, it would be nice to allow the user to completely customize the output format so they can more easily integrate it into their applications.

What would be the best way to approach this problem? My initial thoughts are to define a grammar and write a parser from the ground up.

  • Are there any free Java libraries that can assist in parsing custom scripting(formatting?) languages?
  • Since I already have the XML, would it be a better approach to just 'convert' this with a search & replace algorithm?

I should specify here that 'users' are other programmers so defining a simple language would be fine, and that the output is potentially recursive (imagine outputting the contents of a directory to XML).

Just looking for general advice in this area before I set off down the wrong track.

EDIT: To clarify... My situation is a bit unique. The application outputs coordinates and other data to be loaded into a game engine. Everybody seems to use a different, completely custom format in their own engine. Most people do not want to implement a JSON parser and would rather use what they already have working. In other words, it is in the interests of my users to have full control over the output, asking them to implement a different parser is not an option.

share|improve this question

3 Answers

up vote 1 down vote accepted

Have you considered just using a templating engine like Velocity or FreeMarker.

share|improve this answer
I have not... I haven't even heard of a template engine before. Googling now. – Sam Aug 30 '11 at 12:10
Freemarker looks very promising.. +1 and accepted, thank you very much :) – Sam Aug 30 '11 at 12:46

I would have created a result bean as a POJO.

Then I would have different classes working on the result bean. That way you can easily extend with new formats if needed.

E.g

Result result = logic.getResult();
XMLOutputter.output(result, "myXMLFile.xml");
Format1Outputter.output(result, "myFormat1File.fo1");
Format2Outputter.output(result, "myFormat2File.fo2");
share|improve this answer
but the user needs some way of specifying to Format1Outputter what to output... – Sam Aug 30 '11 at 12:14
You would have to have a specification of the users format and create a Format1Outputter accordingly. This approach won't let you decide the output in run time if that's what your after. – Farmor Aug 30 '11 at 12:21
yeah I need dynamic runtime configuration unfortunately :/ – Sam Aug 30 '11 at 12:29

If you are planning to provide this as an API to multiple parties, I would advise against allowing over-customization, it will add unnecessary complexity to your product and provide just one more place for bugs to be introduced.

Second, it will increase the complexity of your documentation and as a side affect likely cause your documentation to fall out of sync with the api in general.

The biggest thing I would suggest considering, in terms of making your stream easier to digest, is making the output available in JSON format, which just about every modern language has good support for (I use Gson for Java, myself).

share|improve this answer
My situation is a bit unique. The application outputs coordinates and other data to be loaded into a game engine. Everybody seems to use a different, usually completely custom format and most people would rather not change their engines but instead fully customize the format which my program provides to them. Most people do not want to implement a JSON parser in their game engine and would rather use what they already have working – Sam Aug 30 '11 at 12:19
Strange that you don't add this to the original question. – Wivani Aug 30 '11 at 12:23
You're right. Fixed! – Sam Aug 30 '11 at 12:27

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.