with tarjeta studio read leer how example emular data card application java nfc open-nfc

tarjeta - ¿Cómo crear un programa NFC simple usando java?



send data nfc android (3)

He encontrado un gran artículo here ( here ) a través del cual aprendí cómo comunicarme y hacer pagos a través de chips NFC. Pasa por esto y espero que resuelva tu problema.

Soy un novato aprendiendo java y nfc. Realmente necesito ayuda con mi tarea "Programación NFC". Intento este tutorial http://open-nfc.org/wp/editions/sdk-edition/creating-a-java-example/ y aún obtengo este mensaje de error:

Start failed ! NfcException : Error while starting the NFC Manager - Caused by NFC error DRIVER at org.opennfc.NfcManager.start(Unknown Source) at org.opennfc.NfcManager.getInstance(Unknown Source) at example.Example.main(Example.java:26) Exception in thread "main" java.lang.IllegalStateException at org.opennfc.NfcManager.stop(Unknown Source) at example.Example.main(Example.java:36)

En realidad, lo que quiero ejecutar es este código de ejemplo por open-nfc

NfcManager mgt = NfcManager.getInstance(null); try { System.out.println(mgt.getProperty("open_nfc.version")); System.out.println(mgt.getProperty("nfcc.firmware_version")); } finally { try { mgt.stop(); } catch(NfcException e) { System.out.println("Error :" + e.getMessage()); } }

Ya he iniciado el centro de conexión, el simulador nfc y la conversión de servidores. Y tengo un dispositivo QPROX QP3000, ya conectado a mi PC. Estoy usando eclipse juno y windows 7.



La línea que llama a NfcManager.getInstance(null) falla. ¿Está seguro de que NfcManager.getInstance () requiere un parámetro null ?

Después de eso, llamar a mgt.stop() vuelve a fallar con una mgt.stop() java.lang.IllegalStateException , tal vez porque no se ha iniciado.