我正在编写一个小程序,它存储 3 个不同大小的文件,分别为 5 Kb、7 Kb 和 11 Kb。将文件存储在小程序中没有问题。但是当我尝试读回它们时,我只能读取前两个(较小的文件)。第三个文件抛出异常:
javax.smartcardio.CardException: Could not obtain response
at sun.security.smartcardio.ChannelImpl.doTransmit(Unknown Source)
at sun.security.smartcardio.ChannelImpl.transmit(Unknown Source)
我试图找出问题所在,我发现它与文件的大小有关。所以我创建了一个大小为 7 Kb 的测试文件,并一点一点地增加这个文件。它一直工作到我达到 7905 字节。这意味着 7905 字节是我可以从小程序中读取的最大字节数。我正在使用示例代码链接响应:
public void readFile(APDU apdu, short[] offset, short selectedFile, short MAX_APDU_SEN, byte OFFSET_SENT) {
byte[] file = getFile(selectedFile);
if (file == null) {
+ ISOException.throwIt(ISO7816.SW_FILE_NOT_FOUND);+
}
// work out how many bytes to send this time and how many will be left
short remain = (short) (file.length - offset[OFFSET_SENT]);
boolean chain = remain > MAX_APDU_SEN;
short sendLen = chain ? MAX_APDU_SEN : remain;
apdu.setOutgoing();
apdu.setOutgoingLength(sendLen);
apdu.sendBytesLong(file, offset[OFFSET_SENT], sendLen);
// Check to see if there are more APDU's to send
if (chain) {
+offset[OFFSET_SENT] = sendLen; // count the bytes sent
ISOException.throwIt(ISO7816.SW_BYTES_REMAINING_00); // indicate there are more bytes to come
} else {+
offset[OFFSET_SENT] = 0; // no more bytes to send
}
}
我尝试了两种不同类型的卡,即 JC 2.2.1 (36Kb) 和 JC 2.2.2 (80Kb) 兼容卡,但它们的行为都相同。
请问有什么帮助吗?