package com.kkoolerter;

import java.io.IOException;

public class OpenIE {

public static void main(String[] args) throws IOException {
String url = "www.baidu.com";
ProcessBuilder builder = new ProcessBuilder(
"c:\\Program Files\\Internet Explorer\\iexplore", url);
builder.start();
}

}

 

 

相关文章:

  • 2021-09-29
  • 2022-12-23
  • 2021-09-07
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2022-02-15
  • 2021-11-03
  • 2022-12-23
相关资源
相似解决方案