程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-傳遞(UInt8數組的指針)和訪問數組

java-傳遞(UInt8數組的指針)和訪問數組

編輯:編程綜合問答
傳遞(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);

最佳回答:


在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
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved