集册 Java实例教程 从URL获取图像

从URL获取图像

欢马劈雪     最近更新时间:2020-01-02 10:19:05

459
从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)
展开阅读全文