could some one tell me how to read and store my name in smart card using java card? i am using JCIDE 5.0
i want to know how to write program for read and store my name in javacard. Please help me out i am new to java card development
could some one tell me how to read and store my name in smart card using java card? i am using JCIDE 5.0
i want to know how to write program for read and store my name in javacard. Please help me out i am new to java card development
You can write a specific applet in which you can store your name in a non-volatile memory.
Non-volatile memories are defined in your main class (which extend
Applet) and initialized in yourconstructor. Methods for set and get your name should be implemented inside theprocessmethod.As you
selectthis applet, you are able to call the get method, whether you are in contact or contactless interfaces.Appendix 1: