본문 바로가기
프로그램/JAVA

[java] Runtime.getRuntime() 다른 프로그램 실행

by 주원대디 2017. 1. 3.

[java] Runtime.getRuntime() 다른 프로그램 실행

 

자바 코딩시 익스플로러를 띄우고 싶을때 사용하면 유용함.

 

 

1
2
3
4
5
     Runtime rt = Runtime.getRuntime();
                    try{
                        rt.exec("c:/Program Files/Internet Explorer/iexplore.exe " + "http://www.naver.net");
                     
                    }catch(java.io.IOException ee){}
cs