如何在 C# 中将 ASCII 数据转换为 EBCDIC?
我使用此链接阅读了有关将 ASCII 转换为 EBCDIC 的信息;
在 Java 中将字符串从 ASCII 转换为 EBCDIC?
但这是在Java中。我的要求是在 C#.Net 中。
那么你能帮我解决这个问题吗?
谢谢&问候,
克里希纳·库马尔
I read about conversion of ASCII to EBCDIC using this link;
Convert String from ASCII to EBCDIC in Java?
But this is in java. My requirement is in C#.Net.
So can you please help me with this?
Thanks & Regards,
Krishna Kumar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个实现(由@Jon Skeet)您可能会发现有用。
Here's an implementation (by @Jon Skeet) you might find useful.
我尝试了上面的代码,发现它对我不起作用。
例如,“04”(0x3034) ascii 转换为 0x00f000f4 ebcdic。问题似乎出在编码上。
尝试了多种方法来改变这一点,但最终发现最好的解决方案是最基本的。我没有使用 Convert.ToChar,而是将十六进制值插入数组中。
请参阅以下内容:
I tried the above code, and found it did not work for me.
For example, '04' (0x3034) ascii translated to 0x00f000f4 ebcdic. Problem seemed to be the encoding.
Played with several approches to change this, but finally found the best solution was the most basic. Instead of using Convert.ToChar, I plugged the hex value into the array.
Please see following:
尝试像下面的代码
并检查这些链接上的 saple 代码
http:// /kseesharp.blogspot.com/2007/12/convert-ascii-to-ebcdic.html
http://forums.asp.net/t/167516.aspx
http: //www.yoda.arachsys.com/csharp/ebcdic/
http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/c2b074fd-4293-4bf4-b7fa-1803fc625d43
Try like below code
and check the saple code on these links
http://kseesharp.blogspot.com/2007/12/convert-ascii-to-ebcdic.html
http://forums.asp.net/t/167516.aspx
http://www.yoda.arachsys.com/csharp/ebcdic/
http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/c2b074fd-4293-4bf4-b7fa-1803fc625d43