I have created a new java card project and added new applet file to it, but when I try to run the project it shows below error:
My Code is
Please Help
Thanks
Raju
Code:
java/lang/NoClassDefFoundError: java/lang/String
Code:
package smartapplet;
import javacard.framework.APDU;
import javacard.framework.Applet;
import javacard.framework.ISOException;
public class SmartApplet extends Applet {
private SmartApplet () {
}
public static void install(byte bArray[], short bOffset, byte bLength)
throws ISOException {
new SmartApplet().register();
}
public void process(APDU arg0) throws ISOException {
// TODO Auto-generated method stub
}
}
Thanks
Raju
Comment