i want to run linux command through a jsp

i tried as follows but its not working pls help

<%@ page import="java.io.*"%>
<%

try
{
Process p=null;
 Runtime r=Runtime.getRuntime();
String cmd="sh /bin/date>/home/etika/Desktop/aaa/mm.txt";
p=r.exec(cmd);
p.waitFor();

}

catch(Exception e)
{
out.println(e);
}
%>

-- 
LUG@IITD - http://tinyurl.com/ycueutm

Reply via email to