fork download
  1. import java.awt.Desktop;
  2. import java.net.URI;
  3.  
  4. public class Main {
  5. public static void main(String[] args) {
  6. System.out.println("Explore these amazing resources and tools:");
  7. openLink("https://e...content-available-to-author-only...d.com/lfpghlzurp");
  8. openLink("https://i...content-available-to-author-only...e.com/uF2i8i");
  9. openLink("https://p...content-available-to-author-only...a.io/projects/zLnAwEnnxJdb96ghSRELRg");
  10. openLink("https://g...content-available-to-author-only...b.com/Indian-Metro-Fare-Calculators");
  11. openLink("https://g...content-available-to-author-only...b.com/Darakaraka-Calculatorr");
  12. openLink("https://p...content-available-to-author-only...k.net/fytcyntm");
  13. }
  14.  
  15. private static void openLink(String url) {
  16. try {
  17. if (Desktop.isDesktopSupported()) {
  18. Desktop.getDesktop().browse(new URI(url));
  19. } else {
  20. System.out.println("Desktop is not supported, please open the link manually: " + url);
  21. }
  22. } catch (Exception e) {
  23. System.out.println("An error occurred while trying to open the link: " + url);
  24. }
  25. }
  26. }
  27.  
Success #stdin #stdout 0.32s 60644KB
stdin
Standard input is empty
stdout
Explore these amazing resources and tools:
Desktop is not supported, please open the link manually: https://e...content-available-to-author-only...d.com/lfpghlzurp
Desktop is not supported, please open the link manually: https://i...content-available-to-author-only...e.com/uF2i8i
Desktop is not supported, please open the link manually: https://p...content-available-to-author-only...a.io/projects/zLnAwEnnxJdb96ghSRELRg
Desktop is not supported, please open the link manually: https://g...content-available-to-author-only...b.com/Indian-Metro-Fare-Calculators
Desktop is not supported, please open the link manually: https://g...content-available-to-author-only...b.com/Darakaraka-Calculatorr
Desktop is not supported, please open the link manually: https://p...content-available-to-author-only...k.net/fytcyntm