0

当我使用 ActiveXObject 在 Web 项目下运行“test.exe”时,IE 返回以下错误消息 -

“该系统找不到指定的文件。”

这是示例编码

function RunExe(){  
  w = new ActiveXObject("WScript.Shell");  
  var ex =w.Exec('test.exe');
  var ret = "";
  //read the output of the jar
  while (!ex.StdOut.AtEndOfStream) {
     ret += ex.StdOut.ReadLine();
 }   
 return true;
}

这是项目结构。

项目路径

你能给我一些建议吗?

4

1 回答 1

0

您请求“text.exe”,但可执行文件名为“test.exe”。

于 2013-05-22T06:16:15.230 回答