我的来源在下面
命令.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'文件夹被创建。
什么问题?
我找不到解决方案。
请告诉我建议。