0

它适用于 pacman 游戏,当我从计算机导入它时,它可以完美运行。但是当我尝试从 URL 中获取它时,我的游戏开始滞后并且图像不显示。

URL url = new URL("https://www.dropbox.com/s/xpc49t8xpqt8dir/pacman%20down.jpg");
image = ImageIO.read(url);  

G.drawImage(image, x, y, 20,20,null);

图片

吃豆人

( http://i.stack.imgur.com/Cp1XL.png在 IMGUR )

4

3 回答 3

5

https://www.dropbox.com/s/xpc49t8xpqt8dir/pacman%20down.jpg是返回 HTML 文本而不是图像数据。

这是一个 hack,但请尝试https://www.dropbox.com/s/xpc49t8xpqt8dir/pacman%20down.jpg?dl=1。但请注意,drop box 将来可能会更改此查询。

在此处输入图像描述

public class TestURL02 {

    public static void main(String[] args) {
        new TestURL02();
    }

    public TestURL02() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new PacPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class PacPane extends JPanel {

        private BufferedImage image;

        public PacPane() {
            InputStream is = null;
            try {
                URL url = new URL("https://www.dropbox.com/s/xpc49t8xpqt8dir/pacman%20down.jpg?dl=1");
//                StringBuilder sb = new StringBuilder(1024);
//                byte[] buffer = new byte[1024 * 1024];
//                is = url.openStream();
//                int in = -1;
//                while ((in = is.read(buffer)) != -1) {
//                    sb.append(new String(buffer));
//                }
//                System.out.println(sb.toString());
                image = ImageIO.read(url);
            } catch (IOException exp) {
                exp.printStackTrace();
            } finally {
                try {
                    is.close();
                } catch (Exception e) {
                }
            }
        }

        @Override
        public Dimension getPreferredSize() {
            return image == null ? super.getPreferredSize() : new Dimension(image.getWidth(), image.getHeight());
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            if (image != null) {
                int x = (getWidth() - image.getWidth()) / 2;
                int y = (getHeight() - image.getHeight()) / 2;
                g.drawImage(image, x, y, this);
            }
        }

    }
}
于 2012-11-20T03:08:12.847 回答
2

我认为它可能会滞后,因为每次使用Graphics对象绘制图像时程序都会下载图像。您应该为您的图像使用缓存系统,或者为所有程序执行下载一次。

于 2012-11-20T03:05:29.033 回答
0

我的猜测,这只是一个猜测,因为您没有告诉我们,但是您是否可能尝试从 Swing 或 AWTpaint(...)paintComponent(...)方法中的 URL 读取图像?如果是这样,请不要这样做。读取一次图像,然后在方法中使用它。paintComponent(...)

如果这没有帮助,请告诉我们我们需要知道的详细信息才能为您提供帮助。

于 2012-11-20T03:01:21.460 回答