hi all,
I need your help.. I have successfully writing a program to read smart card (pcsc compliance) in java program. Suddenly i got an idea to port all the code to JavaFX because the GUI is very good and clean. Unfortunately i got stuck when try to port in into javafX. In order to resolve this problem i had strip down all the code and only left minimum code. Below is the final code which is not working.
package mykadapplet;
import com.linuxnet.jpcsc.Context;
public class test {
private Context ctx ;
public test(){
//do nothing
}
public void Start()
{
ctx = new Context();
}
}
The error occur when it execute ctx= new Context();
First command to initiate library in pcsc before do connection to the hardware.
please help me,
Thank