I have a question that how to add an image from an online URL into the JFrame?
This code is for local file.
This is for picture in same folder.
But how about image from online?
Thanks.
This code is for local file.
Code:
ImageIcon picture = new ImageIcon("C:\\Users\\User\\Pictures\\abc.jpg");
Code:
ImageIcon picture = new ImageIcon("abc.jpg");
Thanks.