在JFrame中显示.png图像?

在JFrame中显示.png图像?,第1张

在JFrame中显示.png图像?

main需要是静态的,并且必须具有String []而不是String的参数。

为了解决这个问题,将所有东西都放在构造函数中,例如

import java.awt.*; import javax.swing.*;@SuppressWarnings("serial")public class ShowPNG extends Jframe{      private ShowPNG(String arg){      if (arg == null ) {        arg = "C:/Eclipse/workspace/ShowPNG/bin/a.png";    }          JPanel panel = new JPanel();     panel.setSize(500,640);    panel.setBackground(Color.CYAN);     ImageIcon icon = new ImageIcon(arg);     JLabel label = new JLabel();     label.setIcon(icon);     panel.add(label);    this.getContentPane().add(panel);   }  public static void main(String[] args) {      new ShowPNG(args.length == 0 ? null : args[0]).setVisible(true);   }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5439841.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存