Page 1 of 1

How to create files in java card

Posted: Wed Dec 28, 2016 11:29 pm
by Christy16
I want to create EFs with some data which is defined by myself and store them in the java card. Then I would like to use an applet to select and read these data. Is there any way to do this? How can I implement? Thanks a lot

Re: How to create files in java card

Posted: Thu Dec 29, 2016 2:26 am
by pitbar
You have to implement a proprietary version of CREATE FILE and the ISO versions of READ BINARY and UPDATE BINARY by yourself according to your needs.

FYI: ISO applet viewtopic.php?f=17&t=31 is really a good example for you to learn more on this part.

Re: How to create files in java card

Posted: Thu Dec 29, 2016 5:20 am
by Christy16
Many thanks for your help. I will try to study ISO applet first.