'JAVA에서 쉘스크립트 실행'에 해당되는 글 1건

  1. 2012.09.15 JAVA에서 쉘스크립트 실행
01.JAVA/Java2012. 9. 15. 07:58
반응형
public class Test{
public static void main(String[] args){
String[] command = {"/bin/sh","-c","실행시킬 쉘 스크립트"};
int i;
try{
Process ps = Runtime.getRuntime().exec(command);
ps.waitFor();
System.out.println(ps.exitValue());
ps.destroy();
}catch(Exception e){
e.printStackTrace();
}
}
}

 

Posted by 1010