I am beginner in java.
I want run native application from applet.
I found Run App In Every Browser
Java Code
import com.ms.security.*;
 import java.awt.*;
 import java.awt.event.*;
 import java.applet.*;
 import java.io.*  ;
 import java.util.*;
 import netscape.security.PrivilegeManager;
public class RunApp extends Applet implements ActionListener {
    TextArea ta = new TextArea (25, 80);
    Button startbutton = new Button("Start Application") ;
    private static String execommand = "C:\\windows\\notepad.exe" ;
    private String osname;
  public void init() {
    try { 
      if (Class.forName("com.ms.security.PolicyEngine") != null) {  // required for IE
         PolicyEngine.assertPermission(PermissionID.SYSTEM);
       }
    } 
   catch (Throwable cnfe) {
   } 
     this.setBackground(Color.white) ;
      startbutton.addActionListener(this) ;
      add(startbutton) ;  
      startbutton.setBackground(Color.red) ;
   try{
    PrivilegeManager.enablePrivilege("UniversalExecAccess") ;  // required for NN 
     }
    catch(Exception cnfe) { 
      System.out.println("netscape.security.PrivilegeManager class not found") ;
     }
   
   osname = System.getProperty("os.name");  // if NT, Win2000 or WinXP, adjust path
   if(osname.equals("Windows NT") || osname.equals("Windows 2000")|| osname.equals("Windows XP"))
     execommand = "C:\\winnt\\notepad.exe"  ;
  }
  public void actionPerformed(ActionEvent e) {
     if( (e.getActionCommand()).equals("Start Application")) {
   try{
    PrivilegeManager.enablePrivilege("UniversalExecAccess") ;  // required for NN 
     }
    catch(Exception cnfe) { 
      System.out.println("netscape.security.PrivilegeManager class not found") ;
     }
    try {
       Process proc =  Runtime.getRuntime().exec(execommand) ;
      }
    catch(IOException ieo) {
      System.out.println("Problem starting " + execommand) ;
      }
      // System.out.println("execommand: " + execommand) ;
    }
  }
 }
But when run it say error:package com.ms.security does not exit!
I does not any folder with ms or security name .
I should create folder with ms and then security in root file or should import library ms.security .
where is com.ms.security or netscape.security.PrivilegeManager?
how can download it?i search for download this package but i does not found anythings
I use eclipse for write code.
 
     
     
     
     
     
    