0
我壓縮jpeg圖像爲.lep, 現在我有.exe文件將.lep圖像轉換回jpeg,我想寫一個簡單的jsp,我可以解碼和.lep飛圖像,並將其顯示在瀏覽器上,下面的代碼工作在IE僅Lapton圖像轉換爲jpeg飛
<html>
<head>
<script type="text/javascript">
function foo() {
console.log("Testing");
var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("D:\lepton.exe D:\img.lep");
var strOutput = oExec.StdOut.ReadAll();
console.log(strOutput);
document.getElementById("img1").src = "D:\img.jpg";
}
</script>
</head>
<body>
<button onclick="foo()">Click me</button>
<img id="img1" alt="Smiley face" >
</body>
</html>
我該怎麼做同樣的使用jsp/java –