如何在JFrame中刷新图像?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在JFrame中刷新图像?相关的知识,希望对你有一定的参考价值。
有一些服务器,我需要从中获取图像。此图像有时会更新。程序需要获取此图像并始终在屏幕上全屏显示。我写了一些代码,如果运行一次它可以正常工作。但我无法处理更新图像。我需要每隔XX分钟或几秒钟从服务器获取图像并在屏幕上显示。可能我需要一些刷新图像功能 - 如repaint(),但我不知道如何在此代码中使用它。我试过循环 - 而Thread.sleep()但由于创建了许多过度的对象而无法正常工作......请帮帮我。
public class MyParser {
public static void main(String[] args) throws IOException, InterruptedException {
String urlStr = "http://192.168.11.111/images/SGBWebServerImage.bmp";
JFrame frame = new JFrame();
URL url = new URL(urlStr);
BufferedImage image = resize(ImageIO.read(url), 320, 1920);
ImageIcon icon = new ImageIcon(image);
frame.add(new JLabel(icon));
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setBackground(Color.BLACK);
frame.pack();
frame.setVisible(true);
}
private static BufferedImage resize(BufferedImage img, int height, int width) {
Image tmp = img.getScaledInstance(width, height, Image.SCALE_SMOOTH);
BufferedImage resized = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
Graphics2D g2d = resized.createGraphics();
g2d.drawImage(tmp, 0, 0, null);
g2d.dispose();
return resized;
}
答案
我需要每隔XX分钟或几秒钟从服务器获取图像并在屏幕上显示。
使用Swing Timer
安排一些活动。有关更多信息,请阅读How to Use Swing Timers上Swing教程中的部分。
当计时器触发时,您需要:
- 从服务器获取图像
- 更新JLabel的图标
这意味着您需要重新构建代码,以便引用标签。所以你需要摆脱所有的静态方法。
你可以查看:No delay in GUI execution even after implementing sleep in a separate thread的例子。您只需要替换actionPerformed(...)
方法中的逻辑来获取图像并更新标签的图标。
另一答案
检查这是否有帮助。
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URL;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class MyImage extends JPanel implements ActionListener {
/**
*
*/
private static final long serialVersionUID = 1L;
JLabel imageLabel;
public MyImage() {
ImageIcon icon = new ImageIcon("https://picsum.photos/200/300/?random");
setLayout(new BorderLayout());
imageLabel = new JLabel(icon);
add(imageLabel, BorderLayout.CENTER);
javax.swing.Timer timer = new javax.swing.Timer(1000, this);
timer.start();
}
public void actionPerformed(ActionEvent e) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
try {
String imageName = "https://picsum.photos/200/300/?random";
URL url = new URL(imageName);
ImageIcon icon = new ImageIcon(url);
icon.getImage().flush();
imageLabel.setIcon(icon);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
private static void createAndShowUI() {
JFrame frame = new JFrame("testimage reload");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new MyImage());
frame.setLocationByPlatform(true);
frame.setSize(500, 500);
frame.setVisible(true);
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
createAndShowUI();
}
});
}
}
以上是关于如何在JFrame中刷新图像?的主要内容,如果未能解决你的问题,请参考以下文章