What is the simplest way to convert HEX value to ebcdic char type in Java

e.g. The example below will return at sign but I would like to get ebcidic equivalent i.e. space char..

String hex = "40"; char c = (char) Integer.parseInt(hex, 16);

link|improve this question
Duplicate: stackoverflow.com/questions/368603/… – tangens May 19 '10 at 6:49
1  
You are aware there are MANY edbdic code pages, all different? – Thorbjørn Ravn Andersen May 19 '10 at 6:55
feedback

1 Answer

Simples and most efficient solution would probably be to write up a lookup-table yourself, based on for instance http://www.natural-innovations.com/computing/asciiebcdic.html.

Other solutions can be found here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.