2009-08-06 146 views

回答

4

事實證明,他們可以。

5

我已經使用過這個在Windows系統上啓動的東西從來沒有在Mac上嘗試過它。

public void launchScript(String args) 
{ 
    String cmd = null; 
    try 
    { 
     cmd = getParameter(PARAM_CMD); 
     System.out.println("args value : = " + args); 
     System.out.println("cmd value : = " + cmd); 
     System.out.println("Full command: = " + cmd + " " + args); 
     if (cmd != null && !cmd.trim().equals("")) 
     { 
      if (args == null || args.trim().equals("")) 
      { 
       final String tempcmd = cmd; 
       AccessController.doPrivileged(new PrivilegedAction() { 
       public Object run() { 
       try 
       { 
        Runtime.getRuntime().exec(tempcmd); 
       } 
       catch (Exception e) 
       { 
        System.out.println("Caught exception in privileged block, Exception:" + e.toString()); 
       } 
       return null; // nothing to return 
      } 
      });      
       System.out.println(cmd); 
      } 
      else 
      { 
       final String tempargs = args; 
       final String tempcmd1 = cmd; 
       AccessController.doPrivileged(new PrivilegedAction() { 
        public Object run() 
        { 
         try 
         { 
          Runtime.getRuntime().exec(tempcmd1 + " " + tempargs); 
         } 
         catch (Exception e) 
         { 
          System.out.println("Caught exception in privileged block, Exception:" + e.toString()); 
         } 
         return null; // nothing to return 
        } 
       });       
       System.out.println(cmd + " " + args); 
      } 
     } 
     else 
     { 
      System.out.println("execCmd parameter is null or empty"); 
     } 
    } 
    catch (Exception e) 
    { 
     System.out.println("Error executing command --> " + cmd + " (" + args + ")"); 
     System.out.println(e); 
    } 
} 
0

唯一相關的問題我知道的是,使用Internet Explorer在Windows Vista上的老「經典」插件,小程序是在一個「低誠信」的過程,這停止了是特別有用的運行。

和往常一樣,我平常的建議是在簽署任何代碼之前知道你在做什麼。

+0

是的。我需要明確地定位mac,所以這不是問題。不過很高興知道。 – 2009-08-21 02:06:56

+0

想想吧,OS X的「安全帶」可能會應用於瀏覽器並導致問題。我不完全確定蘋果在採用PlugIn 2方面的表現。 – 2009-08-21 02:37:16

相關問題