Apache Commons Exec 이용
1) dependency 추가
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.3</version>
</dependency>
2) 실행 예시
public void execute(String[] command)
throws IOException,InterruptedException {
DefaultExecutor executor = new DefaultExecutor();
CommandLine cmdLine = CommandLine.parse(command[0]);
for (int i=1, n=command.length ; i<n ; i++ ) {
cmdLine.addArgument(command[i]);
}
executor.execute(cmdLine);
}
반응형
'Web > 웹 상식' 카테고리의 다른 글
SPA에 대해서 (Single Page Application) (0) | 2021.05.01 |
---|---|
도메인 주도 설계 (Domain Driven Development)에 대해서 (0) | 2021.04.18 |
Http와 Rest API에 대한 간단한 정리 (0) | 2021.03.05 |
Spring Retry에 대해서 (0) | 2020.10.14 |
Vue.js 3.0 과 Vite (0) | 2020.09.23 |