与Objective C中的Java的DataOutputStream等效

时间:2012-12-06 10:58:44

标签: java objective-c ios dataoutputstream bytearrayoutputstream

我目前正在研究目标C中的项目。

我需要使用Java类DataOutputStream的函数,例如writeCharswriteLongflushByteArrayOutputStream类的一些函数。

具体来说,我可以在Objective C中使用哪些功能与DataOutputStreamByteArrayOutputStream类具有相同的功能?

这是我需要转换为Objective C的代码。

public static byte[] getByteArray(String key, long counter) throws IOException
{

    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    DataOutputStream dos = new DataOutputStream(bos);
    if (key != null)
    {
        dos.writeChars(key);
    }
    dos.writeLong(counter);
    dos.flush();
    byte[] data = bos.toByteArray();
    return data;
}

2 个答案:

答案 0 :(得分:0)

NSLog();

上述方法将字符串和对象作为参数。 如,

NSLog(@"Hi this is demo of string printing.");

NSLog(@"Hi this is integer %d",intValue);//this is like printf isnt it?

编辑:

%b,或将其转换为NSData对象,然后使用%@进行打印。 Obj-c对所有类型的对象使用%@。

unsigned int a = 0x000000FF;
NSLog(@"%x", a);//prints the most significant digits first

答案 1 :(得分:0)

您想要的是将原始数据类型转换为原始字节。

NSMutableData* dataBuffer = [NSMutableData data]; //obj-c byte array

long long number = 123456LL; //note that long long is needed in obj-c to represent 64bit numbers
NSData* numberData = [NSData dataWithBytes:&number length:sizeof(number)]; 
[dataBuffer appendData:numberData];

NSString* text = @"abcdefg";
const char* rawText = [text cStringUsingEncoding:NSUTF8StringEncoding]; //java uses utf8 encoding
NSData* textData = [NSData dataWithBytes:rawText length:strlen(rawText)];
[dataBuffer appendData:textData];

return dataBuffer;

不需要flush()(我相信Java不需要ByteArrayOutputStream

这有点简化,请注意,当Java写入字符串时,前两个字节始终是字符串长度。 Java还在Big Endian中编写数字。我们用系统字节顺序编写它们。如果您不想将二进制数据发送到其他设备,这应该不是问题。

您可以使用CFByteOrderUtils.h中的实用程序切换字节顺序,也可以通过以下方式直接获取Big Endian中的数字:

- (NSData*)bytesFromLongLong:(long long)number {
    char buffer[8];

    for (int i = sizeof(buffer) - 1; i >= 0; i--) {
        buffer[i] = (number & 0xFF);
        number >> 8; 
    }

    return [NSData dataWithBytes:buffer length:sizeof(buffer)]
}