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

I want to provide a simple XHTML representation of each of the resources in a REST web service.

At the moment i'm using a StringBuilder to generate these which is both tedious and error prone. I don't see these changing after I publish the service but the process of coding each is a bit painful.

Is there a XHTML document writer api? Should I just use an XML writer? Which one? Should I just roll my own basic HTML document class - doctype is the same each time, i just need to set the title, metatags and body content, most of which (but not all content) is already in HTML for the GETs.

Or should I just use StringBuilder and stop whining? ;)

Thanks.

share|improve this question

2 Answers

up vote 2 down vote accepted

You could use something like jdom or dom4j. Either one provides a simple interface for building your document and then serializing it as an XML string. It's less brittle than using a StringBuilder.

UPDATE: Corrected dom4j link.

share|improve this answer
The dom4j link tells me that "The internet is great." - although they provide a link to the sourceforge page they're not associated with dom4j you might want to update the link – 123x Apr 11 '10 at 16:34
1  
The internet IS great. Link is updated. – Andy Gherna Apr 11 '10 at 17:45
:) I'm trying out dom4j ... now I've more questions! – 123x Apr 11 '10 at 18:21

I would give Apache's XMLBEANS a try. You can process XHTML's schema with it, and it will generate classes to handle (generate/validate) XHTML directly.

Hope it helps.

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.