LukeHan 의 잡다한 기술 블로그

JAVA 에서 윈도우 cmd 명령어 실행하기 본문

개발/JAVA

JAVA 에서 윈도우 cmd 명령어 실행하기

LukeHan1128 2021. 8. 13. 20:00
반응형

 

InputStream is = null;
BufferedReader br = null;
String cmd = "echo 실행할 명령어";
Boolean isRead = true;	// 실행후 출력을 읽어들여야 하는 경우

try{
	is = Runtime.getRuntime().exec("cmd /c " + cmd).getInputStream();
	if(isRead) br = new BufferedReader(new InputStreamReader(is, "UTF-8"));
}catch(IOException e){
	logger.error("IOException");
}

 

 

 

반응형
Comments