Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在设计小型 Java 应用程序,其中有一个 webDriver。该应用程序将从 Web 服务收集信息。
此应用程序的要求之一是没有特定的浏览器依赖性。也就是说,我不知道最终用户 PC 上安装了哪个浏览器。因此,我需要使用默认浏览器。我该怎么做呢?
在 Windows 中:您可以browse(URI uri) 在类中使用函数Desktop,它会启动默认浏览器以显示uri
browse(URI uri)
Desktop
uri
Desktop.getDesktop().browse("/////URI");