Click here to Skip to main content
15,892,746 members
Articles / Programming Languages / Java

SmartCard Java Serial Interface

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
12 Nov 2010CPOL2 min read 21.9K   335   2  
Getting SmartCard lifecycle state from Java
package skynet.smart;

public class Runner 
{    

  public static void main (String args[]){

    Principal formulario = new Principal();
    formulario.setVisible(true);        
    Thread hilo = new hiloPuerto(formulario);
    
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Spain Spain
I am a software developer grown with programming paradigm evolution. Think that C is God's Programming Language.

Comments and Discussions