Welcome to My World (www.dgmayor.com)

소프트웨어/자바 GUI & C# 등...

38. 자바로 웹 브라우저 실행하기

dgmayor 2022. 3. 30. 09:37
728x90

Runtime runtime = Runtime.getRuntime();

try{

runtime.exec("explorer.exe http://www.dgmayor.com/"); 

} catch (Exception e) {

e.printStackTrace();

}

 

/*
try {
Desktop.getDesktop().browse(new URI(urlLink));

} catch (Exception e) {

e.printStackTrace();
}
*/

728x90