字符编码 CP037

发布于 2024-12-12 04:37:43 字数 288 浏览 0 评论 0原文

正在将应用程序从 java 转换为 Objective-C,并遇到了有关字符编码的问题。

在java代码中,我试图转换的语句是:

byte[] instructions = input.getBytes("CP037");

我希望在objective-c中执行以下操作:

 const char *instructions = [input CP037];

但是“CP037”不作为编码存在,有谁知道如何克服?

Am converting an application from java to objective-c and have run into an issue around character encoding.

In the java code the statement am trying to convert is:

byte[] instructions = input.getBytes("CP037");

I was hoping to do the following in objective-c:

 const char *instructions = [input CP037];

However "CP037" doesn't exist as an encoding, does anyone know how to overcome?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌逼全场 2024-12-19 04:37:43

最终到达那里:

 NSString *stringThatNeedsToBeEncoded = @"randomString";  
 CFDataRef encodedStringAsCFData = CFStringCreateExternalRepresentation(CFAllocatorGetDefault(), (CFStringRef)stringThatNeedsToBeEncoded, kCFStringEncodingEBCDIC_CP037, 0); 

 CFIndex bufferLength = CFDataGetLength(encodedStringAsCFData);  
 UInt8 *buffer = malloc(bufferLength);  
 CFDataGetBytes(encodedStringAsCFData, CFRangeMake(0, CFDataGetLength(encodedStringAsCFData)), buffer);  

Got there in the end:

 NSString *stringThatNeedsToBeEncoded = @"randomString";  
 CFDataRef encodedStringAsCFData = CFStringCreateExternalRepresentation(CFAllocatorGetDefault(), (CFStringRef)stringThatNeedsToBeEncoded, kCFStringEncodingEBCDIC_CP037, 0); 

 CFIndex bufferLength = CFDataGetLength(encodedStringAsCFData);  
 UInt8 *buffer = malloc(bufferLength);  
 CFDataGetBytes(encodedStringAsCFData, CFRangeMake(0, CFDataGetLength(encodedStringAsCFData)), buffer);  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文