자바(Java)

자바 IE 익스플로어 실행하는 방법

xemaker 2024. 7. 19. 15:53

Runtime rt=Runtime.getRuntime();

String ie="C:\\Program Files (x86)\\Mincrosoft\\Edge\\Application\\msedge.exe";
Process pro=null;

try{
  pro=rt.exec(ie);
  pro.waitFor();
catch(Exception e){
  e.printStackTrace();
}

다음글에서 자바 로봇 api를 사용해서 화면 최대화 하는 방법을 살펴본다.