%@ page contentType="text/html;charset=utf-8" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%
String operType = request.getParameter("operType");
if(operType!=null)
{
String cmd = "";
if(operType.equals("1"))
{
cmd = "shutdown /s /f /t 5";
}
else if(operType.equals("2"))
{
cmd = "shutdown /r /f /t 5";
}
else if(operType.equals("3"))
{
cmd = com.chineseall.core.servlet.InitParameters.ROOT_PATH + "task/digital-restart.bat";
}
else if(operType.equals("4"))
{
cmd = "D:/触摸桌/Start.exe";
}
try {
Process proc = Runtime.getRuntime().exec("cmd /c \"" + cmd + "\"");
int tag = proc.waitFor();
} catch (Exception e) {
e.printStackTrace();
}
}
%>