<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.0.9">
</HEAD>
<BODY>
Why not extend the class and write escapeElementEntitiesHex or similar?&nbsp; Or accept a parameter that specifies data type.&nbsp; That way it might be useful to somebody else.<BR>
<BR>
<BR>
On Wed, 2004-10-20 at 03:43, Bradley S. Huffman wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE><FONT COLOR="#737373"><I>JDOM always escapes with the hex notation and doesn't provide a way to
change that.  However escapeElementEntities and escapeAttributeEntities
are the only methods that use EscapeStrategy and are public in XMLOutputter
so you could extend it, cut and paste those two methods, and change the
2 lines with Integer.toHexString to Integer.toString. Maybe not the most
elegant solution, but it should work.

Brad

&quot;Mark C. Stafford&quot; writes:

&gt; Hello,
&gt; 
&gt; I'm working with MySQL and Microsoft's Great Plains (Pains). GP is not
&gt; happy with unicode characters unless they're escaped *using decimal
&gt; notation*. Neither have I succeeded in defining an ENTITY that it
&gt; accepts.
&gt; 
&gt; I've implemented an EscapeStrategy which is working well, but have not
&gt; found a property or method that will allow me to choose to &quot;degrade&quot;
&gt; the encoding.
&gt; 
&gt; &amp;#xf1; crashes, but &amp;#241; (tested by hand) works.
&gt; 
&gt; I'm holding up a data conversion. Can you help me? Is this the right
&gt; place to ask? I thought I'd check before resorting to some sort of
&gt; String-based re-parsing with regexp...
&gt; 
&gt; Thanks,
&gt; 
&gt; Mark
&gt; 
&gt; &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&gt; &lt;eConnect xmlns:dt=&quot;urn:schemas-microsoft-com:datatypes&quot;&gt;
&gt;  &lt;SMCustomerMasterType&gt;
&gt;    &lt;taUpdateCreateCustomerRcd&gt;
&gt;    &lt;!-- &lt;snip/&gt; --&gt;
&gt;      &lt;ADDRESS1&gt;Villa Espa&amp;#xf1;a Zaragoza&lt;/ADDRESS1&gt;
&gt;    &lt;!-- &lt;snip/&gt; --&gt;
&gt;    &lt;/taUpdateCreateCustomerRcd&gt;
&gt;  &lt;/SMCustomerMasterType&gt;
&gt; &lt;/eConnect&gt;
&gt; _______________________________________________
&gt; To control your jdom-interest membership:
&gt; </FONT><A HREF="http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com"><U>http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com</U></A>
<FONT COLOR="#737373">_______________________________________________
To control your jdom-interest membership:</FONT>
<A HREF="http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com"><U>http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com</U></A>
<FONT COLOR="#737373"></I></FONT></PRE>
</BLOCKQUOTE>
</BODY>
</HTML>