DaffodilGirl 2013-02-21 02:27 采纳率: 0%
浏览 2745
已采纳

传递(UInt8数组的指针)和访问数组

目前正在做关于UInt8数组的相关应用,遇到问题。

我的代码:

@interface MyClass : NSObject {
    __strong id * myArray; //private byte[] myArray;  <- Java code
}
@property   (nonatomic,readwrite) __strong id * myArray;
@end

在MyClass中的方法:

-(int) getArray: (__strong id *) bufferTmp {

    NSString* aString = @"theString";
    int bytes  = aString.length;

    //now I need to fill the passed in array with the chars of the String
    for (int i = 0; i < bytes; i++) {
            char c = [aString characterAtIndex:i];
            ??? bufferTmp[i] = (UInt8)c;   <----- what to write here?
        }
return bytes;
}

下面是我准备调用方法充填myBuffer的代码:

UInt8 myBuffer[10000];
[xxx read: myBuffer];       <-      不知道这段正确么?

这是相同的java代码:

public int getArray(byte[] bufferTmp) {
    String theString = "theString";
    for (int i = 0; i < bytes; i++) {
        char c = theString.charAt(i);
        bufferTmp[i] = (byte) c;
        }
     return bytes;

 }

在java中调用方法的代码:

byte[] myBuffer = new byte[10000]; 
int n = read(myBuffer);
  • 写回答

1条回答 默认 最新

  • abcdeFGh_xyz 2013-02-21 03:25
    关注

    在Objective-C中可以使用NSDate对象当做byte buffer, 然后dataUsingEncoding获取字节表示的字符串:

    NSString *aString = @"theString";
    NSData *myBuffer = [aString dataUsingEncoding:NSUTF8StringEncoding];
    
    const char *bytes = [myBuffer bytes]; // pointer to the bytes in the buffer
    NSUInteger count = [myBuffer length]; // number of bytes in the buffer
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 QTOF MSE数据分析
  • ¥15 平板录音机录音问题解决
  • ¥15 请问维特智能的安卓APP在手机上存储传感器数据后,如何找到它的存储路径?
  • ¥15 (SQL语句|查询结果翻了4倍)
  • ¥15 Odoo17操作下面代码的模块时出现没有'读取'来访问
  • ¥50 .net core 并发调用接口问题
  • ¥15 网上各种方法试过了,pip还是无法使用
  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 Hadoop集群部署启动Hadoop时碰到问题
  • ¥15 求京东批量付款能替代天诚