S
Steve Rainbird
When writing to an ebcdic file using the following code
Sting buf = "\n";
byte [] b = buf.getBytes("cp1047");
write(b);
The linefeed x"0A" is being converted to a new line x"15" not kept as a
linefeed x"25" as i would expect.
Does anybody know a way around this?
Sting buf = "\n";
byte [] b = buf.getBytes("cp1047");
write(b);
The linefeed x"0A" is being converted to a new line x"15" not kept as a
linefeed x"25" as i would expect.
Does anybody know a way around this?