UTF-8 to EBCDIC in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:57:58Z http://stackoverflow.com/feeds/question/771054 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/771054/utf-8-to-ebcdic-in-java 3 UTF-8 to EBCDIC in Java Raj Mohan 2009-04-21T04:36:00Z 2009-08-17T07:11:54Z <p>Hello,</p> <p>Our requirement is to send EBCDIC text to mainframe. We have some chinese characters thus UTF8 format. So, is there a way to convert the UTF-8 characters to EBCDIC?</p> <p>Thanks, Raj Mohan</p> http://stackoverflow.com/questions/771054/utf-8-to-ebcdic-in-java/771339#771339 5 Answer by Software Monkey for UTF-8 to EBCDIC in Java Software Monkey 2009-04-21T06:49:06Z 2009-04-21T06:56:56Z <p>Assuming your target system is an IBM mainframe or midrange, it has full support for all of the EBCDIC encodings built into it's JVM as encodings named CPxxxx, corresponding to the IBM CCSID's (CP stands for code-page). You will need to do you translations on the host-side since the client side will not have the necessary encoding support.</p> <p>Since Unicode is DBCS and greater, and supports every known character, you will likely be targeting multiple EBCDIC encodings; so you will likely configure those encodings in some way. Try to have your client Unicode (UTF-8, UTF-16, etc) only, with the translations being done as data arrives on the host and/or leaves the host system.</p> <p>Other than needing to do translations host-side, the mechanics are the same as any Java translation; e.g. new String(bytes,encoding) and String.getBytes(encoding), and the various NIO and writer classes. There's really no magic - it's no different than translating between, say, ISO 8859-x and Unicode, or any other SBCS (or limited DBCS).</p> <p>For example:</p> <pre><code>byte[] ebcdta="Hello World".getBytes("CP037"); // get bytes for EBCDIC codepage 37 </code></pre> <p>You can find more information on <a href="http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/rzaha/charenc.htm" rel="nofollow">IBM's documentation website</a>.</p> http://stackoverflow.com/questions/771054/utf-8-to-ebcdic-in-java/771436#771436 2 Answer by Arne Burmeister for UTF-8 to EBCDIC in Java Arne Burmeister 2009-04-21T07:23:32Z 2009-04-21T07:23:32Z <p>EBCDIC has many 8-Bit Codepages. Many of them are supported by the VM. Have a look at <code>Charset.availableCharsets().keySet()</code>, the EBCDIC pages are named <code>IBM...</code> (there are aliases like <code>cp500</code> for <code>IBM500</code> as you can see by <code>Charset.forName("IBM500").aliases()</code>).</p> <p>There are two problems:</p> <ol> <li>if you have characters included in different code pages of EBCDIC, this will not help</li> <li>i am not sure, if these charsets are available in any vm outside windows.</li> </ol> <p>For the first, have a look at <a href="http://www.unicode.org/reports/tr16/" rel="nofollow">this approach</a>. For the second, have a try on the desired target runtime ;-)</p> http://stackoverflow.com/questions/771054/utf-8-to-ebcdic-in-java/772845#772845 0 Answer by Thorbjørn Ravn Andersen for UTF-8 to EBCDIC in Java Thorbjørn Ravn Andersen 2009-04-21T14:27:39Z 2009-04-21T14:27:39Z <p>For the midrange AS/400 (IBM i these days) the best bet is to use the IBM Java Toolkit (jt400.jar) which does all these things transparently (perhaps slightly hinted).</p> <p>Please note that inside Java a character is a 16 bit value, not an UTF-8 (that is an encoding).</p> http://stackoverflow.com/questions/771054/utf-8-to-ebcdic-in-java/1286538#1286538 0 Answer by Ahmad for UTF-8 to EBCDIC in Java Ahmad 2009-08-17T07:11:54Z 2009-08-17T07:11:54Z <p>You can always make use of the IBM Toolbox for Java (<a href="http://jt400.sourceforge.net/" rel="nofollow">JTOpen</a>), specifically the <code>com.ibm.as400.access.AS400Text</code> class in the jt400.jar.</p> <p>It goes as follows:</p> <pre><code>int codePageNumber = 420; String codePage = "CP420"; String sourceUtfText = "Ahmad Yousef Saleh"; AS400Text converter = new AS400Text(sourceUtfText.length(), codePageNumber); byte[] bytesData = converter.toBytes(sourceUtfText); String resultedEbcdicText = new String(bytesData, codePage); </code></pre> <p>I used the code-page <strong>420</strong> and its corresponding java representation of the encoding <strong>CP420</strong>, this code-page is used for Arabic text, so, you should pick the suitable code-page for Chinese text. </p>