Java SE/Runtime class test 썸네일형 리스트형 Runtime class test class RuntimeDemo { public static void main(String[] args) { Runtime rt = Runtime.getRuntime(); String ie = "C:\\Program Files\\Internet Explorer\\iexplore.exe"; String html = "D:\\JAVA\\test\\JDBC\\a.html"; String url = "http://micropilot.tistory.com"; String naver = "http://www.naver.com"; String [] arg = {ie, naver}; try{ rt.exec(arg); }catch(Exception e){} } } 더보기 이전 1 다음