gpt4 book ai didi

java - 我无法让我的图标显示在我的 JLabel swing 组件中

转载 作者:行者123 更新时间:2023-11-30 11:58:21 24 4
gpt4 key购买 nike

下面是在 JLabel Swing 组件中放置图标的 java Swing 代码。

package com.TheMcLeodgrp;

import java.awt.FlowLayout;
import java.awt.HeadlessException;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;

public class Main extends JFrame {
public Main() throws HeadlessException {
setSize(300, 300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new FlowLayout(FlowLayout.LEFT));

Icon icon = new ImageIcon("myIcon.gif");
JLabel label1 = new JLabel("Full Name :", icon, JLabel.LEFT);

JLabel label2 = new JLabel("Address :", JLabel.LEFT);
label2.setIcon(new ImageIcon("myIcon.gif"));

getContentPane().add(label1);
getContentPane().add(label2);
}

public static void main(String[] args) {
new Main().setVisible(true);
}
}

这是一个简单的标签程序,其他一切正常。当我运行程序时,图标 (myIcon.gif) 不会出现在标签中。我从标准的 Eclipse IDE 运行它,myIcon.gif 位于一个文件夹中 - 即; images/myIcon.gif. 似乎我在这里遗漏了一些简单的东西,但我不知道。我是否需要将图标放在应用程序的其他位置。

最佳答案

我认为下面的文章会更好地解释如何加载图像资源,然后我会:)

http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/uiswing/components/icon.html

关于java - 我无法让我的图标显示在我的 JLabel swing 组件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3223744/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com