0

私は、Objective-C コーディングとスマート カード プログラミングも初めてです。iPhone用のアプリケーションを開発しています。iSmartSDK を使用してスマート カードからファイルを読み取る際に問題が発生し、アプレットの選択は成功しましたが、NULL が返されました。誰もそのような問題に直面したか、これについて知っていますか? ありがとう

t0Command.classByte = 0;
t0Command.instructionByte = 0xCB;
t0Command.parameter1Byte = 0x3F;
t0Command.parameter2Byte = 0xFF;
t0Command.dataBytes = nil;
t0Command.lengthByte = t0Command.dataBytes.length;
t0Command.expectedResponseLengthByte = 0x7F;

t0Command.dataBytes = [self hexStringToBytes:@"5C035FC105"];

t0Command.commandId = READ_WRITE_CPU_CARD_COMMAND_ID;
resultCommand = [iSmartInstance sendCommandToCPUCard:t0Command];
if (resultCommand == nil) {
    [self displayMessage:@"Read Binary Failed"];
}
else{
    [self displayMessage:[NSString stringWithFormat:@"Read Status: %02x%02x", ((T0Command*)resultCommand).status1Byte, ((T0Command*)resultCommand).status2Byte]];
    [self displayMessage:[NSString stringWithFormat:@"Response Length: %d", ((T0Command*)resultCommand).dataBytes.length]];
    NSString *readBytes = [[[NSString alloc] initWithBytes:((T0Command*)resultCommand).dataBytes.bytes 
                                                    length:((T0Command*)resultCommand).dataBytes.length 
                                                  encoding:NSASCIIStringEncoding] autorelease];

    [self displayMessage:[NSString stringWithFormat:@"Read Value: %@ \n Bytes: %@", readBytes, ((T0Command*)resultCommand).dataBytes.bytes]];
}
4

0 に答える 0