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 a service that needs to generate xml. Currently I am using jaxb and a Marshaller to create the xml using a StringWriter.

Here is the current output that I am getting.

<CompanyName>Bakery é &amp;</CompanyName>

While this may be fine for some webservices, I need to escape special unicode characters. The service that is comsuming my xml needs to have this:

<CompanyName>Bakery &#233; &amp;</CompanyName>

If I use StringEscapeUtils from commons-lang I end up with something like the follwing. This one does not work also:

<CompanyName>Bakery &amp;#233; &amp;amp;</CompanyName>

Are there some settings for the Marshaller that will allow me to encode these special characters as their decimal values?

share|improve this question

2 Answers

up vote 3 down vote accepted

Yes, Marshaller.setProperty(jaxb.encoding,encoding) will set the encoding to use for the document. I'd guess that you want "US-ASCII".

share|improve this answer
é (U+00E9) is supported by ISO-8859-1, so US-ASCII would be better. – McDowell Jul 16 '11 at 10:21
Agreed, thanks -Ed – Ed Staub Jul 16 '11 at 13:17

As Ed Staub suggests, try setting the jaxb.encoding property. The US-ASCII encoding will cause anything above the first 128 code points to be escaped.

@XmlRootElement(name = "Company")
public class Company {
  private String companyName = "Bakery \u00E9 &";

  @XmlElement(name = "CompanyName")
  public String getCompanyName() { return companyName; }
  public void setCompanyName(String bar) { this.companyName = bar; }

  public static void main(String[] args) throws Exception {
    JAXBContext ctxt = JAXBContext.newInstance(Company.class);
    Marshaller m = ctxt.createMarshaller();
    m.setProperty("jaxb.encoding", "US-ASCII");
    m.marshal(new Company(), System.out);
  }
}
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.