Tagged Questions

4
votes
1answer
3k views

Unpacking EBCDIC Packed Decimals (COMP-3) in an ASCII Conversion

I am using Jon Skeet's EBCDIC implementation in .NET to read a VSAM file downloaded in binary mode with FTP from a mainframe system. It works very well for reading/writing in this encoding, but it ...
3
votes
5answers
24k views

Convert String from ASCII to EBCDIC in Java?

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 to find a easy solution (maybe coz ...
2
votes
4answers
529 views

EBCDIC to ASCII conversion. Out of bound error. In C#

I tried creating a EBCDIC to ASCII convector in C# using this general conversion order(given below). Basically the program converted from ASCII to the equivalent integer and from there into EDCDIC ...
2
votes
5answers
2k views

How to convert from EBCDIC to ASCII in C#.net

I have a value in EBCDIC format "000000{". I want to convert it into a.Net Int32 type. Can anyone let me know what I can do about it?? So my question is given a string that contains a signed numeric ...
2
votes
2answers
618 views

sshfs EBCDIC to ASCII

what I want to do is to be able to mount via sshfs some files on the mainframe via USS on my local PC. I can do that but sshfs doesnt do straight off the conversion from EBCDIC to ascii/unicode. Is ...
1
vote
3answers
96 views

C code to convert EBCDIC printables to ASCII in-place

What is the simplest way in C to convert an EBCDIC-encoded string to its ASCII equivalent in-place. The only characters that need to be converted are the space, alphanumerics, and from the set ...
1
vote
1answer
87 views

Character set that is not a superset of ASCII

Is there a character set other than EBCDIC that is not a superset of 7-bit ASCII?
1
vote
1answer
116 views

C/C++ character literals on ASCII and EBCDIC systems

After reading the PNG specification I was a little bit surprised. I've read character literals should be hardcoded with binary values like 0x41 not in (the programmer friendly) 'A'. The problem seems ...
1
vote
2answers
347 views

How can I search for a character the displays as <85> in Vim?

I have a file that was converted from EBCDIC to ASCII. Where there used to be new lines there are now characters that show up as <85> (a symbol representing a single character, not the four ...
-1
votes
0answers
39 views

Unable to recognize EBCDIC Characters in Linux [closed]

I am converting a ByteMessage (received from MQ) to String in Linux, somehow the EBCDIC characters are getting converted to an unrecognizable format. I tested this on Windows and the characters are ...