Convert String from ASCII to EBCDIC in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T22:40:35Zhttp://stackoverflow.com/feeds/question/368603http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/368603/convert-string-from-ascii-to-ebcdic-in-java1Convert String from ASCII to EBCDIC in Java? scottyab2008-12-15T14:55:22Z2008-12-15T23:49:20Z
<p>Hello, </p>
<p>I need to write a 'simple' util to convert from ASCII to EBCDIC? </p>
<p>The Ascii is coming from Java, Web and going to an AS400. I've had a google around, can't seem to find a easy solution (maybe coz there isn't one :( ). I was hoping for an opensource util or paid for util that has already been written. </p>
<p>Like this maybe? </p>
<pre><code>Converter.convertToAscii(String textFromAS400)
Converter.convertToEBCDIC(String textFromJava)
</code></pre>
<p>Thanks, </p>
<p>Scott</p>
http://stackoverflow.com/questions/368603/convert-string-from-ascii-to-ebcdic-in-java/368621#3686210Answer by Elie for Convert String from ASCII to EBCDIC in Java? Elie2008-12-15T15:02:03Z2008-12-15T15:02:03Z<p>It should be fairly simple to write a map for the EBCDIC character set, and one for the ASCII character set, and in each return the character representation of the other. Then just loop over the string to translate, and look up each character in the map and append it to an output string.</p>
<p>I don't know if there are any converter's publicly available, but it shouldn't take more than an hour or so to write one.</p>
http://stackoverflow.com/questions/368603/convert-string-from-ascii-to-ebcdic-in-java/368623#3686231Answer by Gamecat for Convert String from ASCII to EBCDIC in Java? Gamecat2008-12-15T15:02:45Z2008-12-15T15:02:45Z<p>You can create one yoursef with this <a href="http://www.natural-innovations.com/computing/asciiebcdic.html" rel="nofollow">translation table</a>.</p>
<p>But <a href="http://www.reply42.com/ascii_ebcdic_comp_3/index.php" rel="nofollow">here</a> is a site that has a link to a Java example.</p>
http://stackoverflow.com/questions/368603/convert-string-from-ascii-to-ebcdic-in-java/368632#3686321Answer by JeeBee for Convert String from ASCII to EBCDIC in Java? JeeBee2008-12-15T15:05:54Z2008-12-15T15:05:54Z<p>You should use either the Java character set Cp1047 (Java 5) or Cp500 (JDK 1.3+).</p>
<p>Use the String constructor: <code>String(byte[] bytes, [int offset, int length,] String enc)</code></p>
http://stackoverflow.com/questions/368603/convert-string-from-ascii-to-ebcdic-in-java/369017#3690173Answer by Kwebble for Convert String from ASCII to EBCDIC in Java? Kwebble2008-12-15T16:58:14Z2008-12-15T16:58:14Z<p><a href="http://jt400.sourceforge.net/" rel="nofollow">JTOpen</a>, IBM's open source version of their Java toolbox has a collection of classes to access AS/400 objects, including a FileReader and FileWriter to access native AS400 text files. That may be easier to use then writing your own conversion classes.</p>
<p>From the JTOpen homepage:</p>
<blockquote>
<p>Here are just a few of the many i5/OS and OS/400 resources you can access using JTOpen:</p>
<ul>
<li>Database -- JDBC (SQL) and record-level access (DDM)</li>
<li>Integrated File System</li>
<li>Program calls</li>
<li>Commands</li>
<li>Data queues</li>
<li>Data areas</li>
<li>Print/spool resources</li>
<li>Product and PTF information</li>
<li>Jobs and job logs</li>
<li>Messages, message queues, message files</li>
<li>Users and groups</li>
<li>User spaces</li>
<li>System values</li>
<li>System status</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/368603/convert-string-from-ascii-to-ebcdic-in-java/370101#3701012Answer by thuktun for Convert String from ASCII to EBCDIC in Java? thuktun2008-12-15T23:49:20Z2008-12-15T23:49:20Z<p>Please note that a String in Java holds text in Java's native encoding. When holding an ASCII or EBCDIC "string" in memory, prior to encoding as a String, you'll have it in a byte[].</p>
<pre>
ASCII -> Java: new String(bytes, "ASCII")
EBCDIC -> Java: new String(bytes, "Cp1047")
Java -> ASCII: string.getBytes("ASCII")
Java -> EBCDIC: string.getBytes("Cp1047")
</pre>