I need to write a \'simple\' util to convert from ASCII to EBCDIC?
The Ascii is coming from Java, Web and going to an AS400. I\'ve had a google around, can\'t seem
You should use either the Java character set Cp1047 (Java 5) or Cp500 (JDK 1.3+).
Use the String constructor: String(byte[] bytes, [int offset, int length,] String enc)
String(byte[] bytes, [int offset, int length,] String enc)