The code below show you how to browse a website using the user’s default web browser. To get the default web browser you can use the Desktop
class browse(URI uri)
method call.
package org.kodejava.awt;
import java.awt.Desktop;
import java.io.IOException;
import java.net.URI;
public class RunningDefaultBrowser {
public static void main(String[] args) {
URI uri = URI.create("https://kodejava.org");
try {
// Get Desktop instance of the current browser context. An
// UnsupportedOperationException will be thrown if the
// platform doesn't support Desktop API.
Desktop desktop = Desktop.getDesktop();
// Browse the uri using user's default web browser.
desktop.browse(uri);
} catch (IOException e) {
e.printStackTrace();
}
}
}
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023