Toolkit.getImage(URL url) has the following syntax.
public abstract Image getImage(URL url)
In the following code shows how to use Toolkit.getImage(URL url) method.
import java.awt.Image; import java.awt.Toolkit; import java.net.URL; /*www .j a v a2 s. c om*/ public class Main { public static void main(String[] args) throws Exception{ URL url = new URL("image address"); Image im = Toolkit.getDefaultToolkit().getImage(url); } }