从URL获取图像
/**来 自 时 代 J a v a 公 众 号 - nowjava.com**/ import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; public class Main { public static void main(String[] args) { try { // Create a URL for the image's location URL url = new URL("http://hostname:80/image.gif"); // Get the image java.awt.Image image = java.awt.Toolkit.getDefaultToolkit() .getDefaultToolkit().createImage(url)