有谁知道如何监控智能卡的存在并读取卡的 UID 值?
是的,我在网络上尝试了很多例子,比如
但不知道该怎么做。我可以检测到卡的存在并且可以单独获取 UID,但不知道如何在我的应用程序中组合它们:( .
帮我
有谁知道如何监控智能卡的存在并读取卡的 UID 值?
是的,我在网络上尝试了很多例子,比如
但不知道该怎么做。我可以检测到卡的存在并且可以单独获取 UID,但不知道如何在我的应用程序中组合它们:( .
帮我
我想通了。想和有兴趣的人分享。
我使用winscard.dll函数来访问卡数据并与 PC 通信。
请注意,我使用Mifare 1K 卡作为 NFC 标签和阅读器ACR 122u。
private string getcardUID()//only for mifare 1k cards
{
string cardUID = "";
byte[] receivedUID = new byte[256];
Card.SCARD_IO_REQUEST request = new Card.SCARD_IO_REQUEST();
request.dwProtocol = Card.SCARD_PROTOCOL_T1;
request.cbPciLength = System.Runtime.InteropServices.Marshal.SizeOf(typeof(Card.SCARD_IO_REQUEST));
byte[] sendBytes = new byte[] { 0xFF, 0xCA, 0x00, 0x00, 0x00 }; //get UID command for Mifare cards
int outBytes = receivedUID.Length;
int status = Card.SCardTransmit(hCard, ref request, ref sendBytes[0], sendBytes.Length, ref request, ref receivedUID[0], ref outBytes);
if (status != Card.SCARD_S_SUCCESS)
{
cardUID = "Error";
}
else
{
cardUID = BitConverter.ToString(receivedUID.Take(4).ToArray()).Replace("-", string.Empty).ToLower();
}
return cardUID;
}
对于任何有兴趣的人,我已经在这里编写了分步指南来实现这一目标。
享受!!!