Hello,
I am trying to get the uid (same as the one on a mifare card) of the 6131 to enable phone identification and exchang data between two phones (not only phone and card).
Could anyone help me on this ?
Thanks.
Hello,
I am trying to get the uid (same as the one on a mifare card) of the 6131 to enable phone identification and exchang data between two phones (not only phone and card).
Could anyone help me on this ?
Thanks.
Hi,
here is a code for reading the uid of the internal mifare 4k card.
String uri = System.getProperty("internal.mf.url");
MifareStdConnection std_conn = (MifareStdConnection)Connector.open(uri);
byte[] serial = std_conn.getUID();
std_conn.close();
regards
Andi
if you are looking for communications between phones, check this thread:
http://discussion.forum.nokia.com/fo...d.php?t=107323
Alex_Polt provides a good example of how to do it.