Try your code on JVM your JBoss runs on. Also, run this code to determine what
encodings you have at all:
class Test00 {
| public static final void main (String args[]) {
| java.util.Map charsets =
java.nio.charset.Charset.availableCharsets();
| java.nio.charset.Charset cs = null;
| java.util.Iterator oiter = charsets.entrySet().iterator(),
| iiter = null;
| int i;
| while (oiter.hasNext()) {
| cs = (java.nio.charset.Charset) ((java.util.Map.Entry)
oiter.next()).getValue();
| System.out.print(cs.name());
| iiter = cs.aliases().iterator();
| i = 0;
| while (iiter.hasNext()) {
| System.out.print(i == 0 ? ": " : ", ");
| System.out.print((String) iiter.next());
| i++;
| }
| System.out.println();
| }
| }
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952542#3952542
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952542
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user