gpt4 book ai didi

java - 我无法将 JTextfield 添加到 ImageIcon 之上的 JFrame

转载 作者:行者123 更新时间:2023-12-02 04:08:42 27 4
gpt4 key购买 nike

这是我的代码。对于任何格式错误,我们深表歉意。无论如何,当我创建 JTextField 并将其添加到 JFrame 时,我只看到我的图像图标,但看不到它上面的 JTextField。我做错了什么?

package com.company;

import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
public class Main extends JFrame {

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

String path = "C:\\Users\\home\\Pictures\\Papa2.jpg";
File file = new File(path);
BufferedImage image = ImageIO.read(file);
JLabel label = new JLabel(new ImageIcon(image));
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(label);
f.pack();
f.setLocation(200, 200);
f.setVisible(true);
f.setResizable(false);

JTextField text = new JTextField(40);
text.setVisible(true);
f.add(text);
}
}

最佳答案

将组件添加到 JPanel,然后将面板添加到框架最适合我。

像这样:

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

String path = "C:\\Users\\home\\Pictures\\Papa2.jpg";
File file = new File(path);
BufferedImage image = ImageIO.read(file);
JLabel label = new JLabel(new ImageIcon(image));
JFrame f = new JFrame();
JTextField text = new JTextField(40);
JPanel panel = new JPanel();
panel.add(label);
panel.add(text);
f.add(panel);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(label);
f.pack();
f.setLocation(200, 200);
f.setVisible(true);
f.setResizable(false);
}

}

关于java - 我无法将 JTextfield 添加到 ImageIcon 之上的 JFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34008895/

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