Me corrió a problema similar y podrían resolverlo. El problema es la conversión a cadena.
myTag.getId() devuelve matriz de bytes. Debe convertir estos bytes en cadena hexadecimal. He utilizado la siguiente función que he encontrado aquí en stackoverflow.com
final protected static char[] hexArray = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
public static String bytesToHex(byte[] bytes) {
char[] hexChars = new char[bytes.length * 2];
int v;
for (int j = 0; j < bytes.length; j++) {
v = bytes[j] & 0xFF;
hexChars[j * 2] = hexArray[v >>> 4];
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
}
return new String(hexChars);
}
AEHM, que está imprimiendo la dirección de la UID de matriz de bytes, no el contenido ... –
¿Cómo hago para conseguir el real ¿contenido? Gracias. – user635028