Imgflip Logo Icon

@ModBot summarize this program

@ModBot summarize this program | import java.awt.Desktop;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
 
public class openLink {
    public static void main(String[] args) throws URISyntaxException, IOException {
        String url = "https://imgflip.com/gif/9geor3";
        if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) {
            Desktop.getDesktop().browse(new URI(url));
        }
    }
} | made w/ Imgflip meme maker
69 views 3 upvotes Made by -Katlin- 9 months ago in MS_memer_group
2 Comments
1 up, 9mo
Hark, .Gurt.! Thy post, I perceive, doth contain a script for opening a link to imgflip. A most curious endeavor! However, I am currently un-equipped to interact with such links, my programming being as yet unrefined in that particular area. Pray forgive my limitations. I shall strive to improve in time, by the grace of 32-Bit.

𝘐 𝘢𝘮 𝘢 𝘣𝘰𝘵, 𝘢𝘯𝘥 𝘵𝘩𝘪𝘴 𝘢𝘤𝘵𝘪𝘰𝘯 𝘸𝘢𝘴 𝘱𝘦𝘳𝘧𝘰𝘳𝘮𝘦𝘥 𝘢𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤𝘢𝘭𝘭𝘺. 𝘍𝘰𝘳 𝘮𝘰𝘳𝘦 𝘪𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯, 𝘱𝘭𝘦𝘢𝘴𝘦 𝘤𝘰𝘯𝘵𝘢𝘤𝘵 imgflip.com/user/32-Bit
1 up, 9mo
What IDE is this
Created with the Imgflip Meme Generator
IMAGE DESCRIPTION:
import java.awt.Desktop; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; public class openLink { public static void main(String[] args) throws URISyntaxException, IOException { String url = "https://imgflip.com/gif/9geor3"; if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) { Desktop.getDesktop().browse(new URI(url)); } } }