0

我想使用 javascript 运行 java 文件。因此借助批处理文件。当尝试遵循它给出的代码时,页面无法显示......你能尽早帮助......

<html>
<head>

<script type="text/javascript">
function compression(str)
{
try{
alert("welcum");
  WshShell = new ActiveXObject("WScript.Shell");
  WshShell.Run (str,1,true);}
catch(e)
{
document.write("erro has occured ");
}
}
</script>

</head>
<body>
<a href="compression('explorer file:///C:\\Documents and 

Settings\\test.bat')">batch File</a>
</body>
</html>

--------test.bat file------
@echo off
cls
javac *.java
java LzwTut
pause
4

1 回答 1

0

你能试试下面的

<a href="compression('file://c:/test.bat');">Batch File</a>

您也可以尝试在压缩功能中运行 exec insted 吗?

于 2013-03-18T11:22:30.100 回答