我想用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
答案 0 :(得分:0)
你可以尝试以下
<a href="compression('file://c:/test.bat');">Batch File</a>
你也可以尝试exec而不是在压缩函数中运行吗?