我想在jsp中使用multi linux命令

时间:2013-08-29 06:30:59

标签: linux jsp

我的来源是

command.jsp

<%@ page language="java"
import= "java.io.*,java.util.*" 
contentType="text/html;charset=EUC-KR" session="false" 
%>

<html>
<%  
    try{
        Process ps = null;

        ps = Runtime.getRuntime.exec(new String[]{"mkdir","/home/ec2-user/test"});
        ps.waitFor();

        ps = Runtime.getRuntime.exec(new String[]{"mkdir","/home/ec2-user/test2"});
        ps.waitFor();

    }catch(IOException ie){
        ie.printStackTrace();
    }catch(Exception e){
        e.printStackTrace();
    }
%>

我的目标是制作两个文件夹。

但......当我的源代码执行时,会生成'test'文件夹。

有什么问题?

我找不到解决方案。

请告诉我建议。

0 个答案:

没有答案