我正在尝试将用户在 asp.net 站点上生成的数据上传到 Unisys 大型机。我的客户决定他们希望我将数据直接加载到 Unisys Mainframe Windows 共享上,而不是使用 FTP 上传文件。FTP 通常在 ASCII 和 EBCDIC 之间进行转换。
问题是无论我是否将文件内容编码为 EBCDIC,大型机都将文件视为 ASCII。
测试代码在这里:
string dataToWrite = "ACHR0000000000575TEST EBCDICPAYEE 8899007500038159 0000001000160330 ".ToUpper();
Encoding ebcdic = Encoding.GetEncoding("IBM037");
List<byte> bytes = new List<byte>();
bytes.AddRange(Encoding.Convert(Encoding.ASCII, ebcdic, Encoding.ASCII.GetBytes(dataToWrite)));
using (var unc = new UNCAccessWithCredentials())
{
// get access to the reconciliation file share using credentials in the config
string path = @"\\xxx\RECONDEV";
unc.NetUseWithCredentials(path, "XXX","", "XXX");
string fileName = Path.Combine(path, "ACH");
using (var binWriter = new BinaryWriter(File.OpenWrite(fileName)))
{
binWriter.Write(bytes.ToArray());
binWriter.Flush();
binWriter.Close();
}
}
问题
1) 我是否应该将文件创建为 ASCII,然后让大型机作业调用实用程序来转换文件 EBCDIC?如果是这样,该实用程序的名称是什么?大型机操作人员不知道有一个。
2)有没有办法在.net中实际创建一个EBCDIC文件?EBCDIC 编码正在工作,但我相信文件类型不同,我无法找到任何东西。
我实际上在 2 年中没有对大型机做过任何事情,所以我已经超出了我的深度。
提前致谢。克里斯