Network Protocol Java

/*

 codebase="file:///c:/"
 href="start.jnlp">

 JNLP Test
 Java Source and Support, Inc.
 
 Demonstration of JNLP


 
 



*/
import java.awt.BorderLayout;
import java.awt.Container;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class JNLPTest {
  public static void main(String args[]) {
    JFrame frame = new JFrame();
    Container content = frame.getContentPane();
    JLabel label = new JLabel("Hello, JNLP");
    content.add(label, BorderLayout.CENTER);
    frame.setSize(200, 200);
    frame.show();
    try {
      Thread.sleep(5000);
    } catch (InterruptedException ignored) {
    } finally {
      System.exit(0);
    }
  }
}