web-dev-qa-db-ja.com

URLから画像を取得する(Java)

私は次の画像を読もうとしています

enter image description here

しかし、それはIIOExceptionを示しています。

コードは次のとおりです。

Image image = null;
URL url = new URL("http://bks6.books.google.ca/books?id=5VTBuvfZDyoC&printsec=frontcover&img=1& zoom=5&Edge=curl&source=gbs_api");
image = ImageIO.read(url);
jXImageView1.setImage(image); 
22
Nav Ali

HTTP 400(不正なリクエスト)エラー。URLにspaceが含まれています。 zoomパラメーターの前に修正すると、HTTP 400エラー(無許可)。ダウンロードを認識されたブラウザ(「User-Agent」ヘッダーを使用)として識別するためのHTTPヘッダーまたは追加の認証パラメーターが必要な場合があります。

User-Agentの例では、接続入力ストリームを使用して ImageIO.read(InputStream) を使用します。

URLConnection connection = url.openConnection();
connection.setRequestProperty("User-Agent", "xxxxxx");

xxxxxxに必要なものをすべて使用します

9
JScoobyCed

このコードは私のためにうまくいった。

 import Java.io.FileOutputStream;
 import Java.io.IOException;
 import Java.io.InputStream;
 import Java.io.OutputStream;
 import Java.net.URL;

public class SaveImageFromUrl {

public static void main(String[] args) throws Exception {
    String imageUrl = "http://www.avajava.com/images/avajavalogo.jpg";
    String destinationFile = "image.jpg";

    saveImage(imageUrl, destinationFile);
}

public static void saveImage(String imageUrl, String destinationFile) throws IOException {
    URL url = new URL(imageUrl);
    InputStream is = url.openStream();
    OutputStream os = new FileOutputStream(destinationFile);

    byte[] b = new byte[2048];
    int length;

    while ((length = is.read(b)) != -1) {
        os.write(b, 0, length);
    }

    is.close();
    os.close();
}

}
17
swapnil gandhi

これを試してください:

//urlPath = address of your picture on internet
URL url = new URL("urlPath");
BufferedImage c = ImageIO.read(url);
ImageIcon image = new ImageIcon(c);
jXImageView1.setImage(image);
9
The Sniper

画像を取得するためにURLを直接呼び出すと、重大なセキュリティ問題が懸念される場合があります。そのリソースにアクセスするための十分な権限があることを確認する必要があります。ただし、ByteOutputStreamを使用して画像ファイルを読み取ることができます。これは一例です(単なる一例です。要件に応じて必要な変更を行う必要があります。)

ByteArrayOutputStream bis = new ByteArrayOutputStream();
InputStream is = null;
try {
  is = url.openStream ();
  byte[] bytebuff = new byte[4096]; 
  int n;

  while ( (n = is.read(bytebuff)) > 0 ) {
    bis.write(bytebuff, 0, n);
  }
}
4
Ved

これを試してください:

class ImageComponent extends JComponent {
    private final BufferedImage img;

    public ImageComponent(URL url) throws IOException {
        img = ImageIO.read(url);
        setPreferredSize(new Dimension(img.getWidth(), img.getHeight()));

    }
    @Override protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.drawImage(img, 0, 0, img.getWidth(), img.getHeight(), this);

    }
    public static void main(String[] args) throws Exception {

    final URL lenna =
        new URL("http://bks6.books.google.ca/books?id=5VTBuvfZDyoC&printsec=frontcover&img=1& zoom=5&Edge=curl&source=gbs_api");

    final ImageComponent image = new ImageComponent(lenna);

    JFrame frame = new JFrame("Test");
    frame.add(new JScrollPane(image));

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(400, 300);
    frame.setVisible(true);
   }

}

1
Parth