gpt4 book ai didi

java - JPanel 问题

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

我正在写一个项目作为我实验的一部分......(对于所有已经帮助解决我的其他问题的人,非常感谢。)

好吧,我有一个已经可以工作的文件..我的两个源文件都已正确编译我有两个被覆盖的 jpanel,因此我可以更改它们的绘制组件。我用作应用程序背景图像的一个是有效的。 问题是我试图添加的第二个面板,由于某种原因,当我启动应用程序时,它要么没有显示在第一个 JPanel 上方,要么根本没有显示..

这是我的代码..

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.net.*;
import java.util.*;
import org.jdom.*;
import org.jdom.input.*;
import org.jdom.output.*;

public class COS extends JPanel implements ActionListener{
static JFrame f=new JFrame();
static Image bgImage=null;
static String message="";
JButton chbg=new JButton("change background");
public COS(){
chbg.setBounds(10,10,150,25);
chbg.addActionListener(this);
add(chbg);
}
public void paintComponent(Graphics g){
if(bgImage!=null){
g.drawImage(bgImage,0,0,this);
}
else{
g.drawString(message,40,40);
}
}
public static void loadbg(){
try{
String xmlpath="background.xml";
SAXBuilder builder=new SAXBuilder();
Document xdoc=builder.build(xmlpath);
String fimg="";
fimg=xdoc.getRootElement().getChild("bgimage").getText();
getFileImage(fimg);
} catch(Exception e){
message="File load failed: "+e.getMessage();
}
}
public static void getFileImage(String filein) throws IOException, InterruptedException{
FileInputStream in=new FileInputStream(filein);
byte[] b=new byte[in.available()];
in.read(b);
in.close();
bgImage=Toolkit.getDefaultToolkit().createImage(b);
}
public void actionPerformed(ActionEvent e){
Object source=e.getSource();
JFileChooser jfc=new JFileChooser();
if(source==chbg){
int returnVal=jfc.showOpenDialog(null);
if(returnVal==JFileChooser.APPROVE_OPTION){
File file=jfc.getSelectedFile();
String fileone=file.getName();
changebg(fileone);
}
}
}
public void changebg(String filein){
try{
getFileImage(filein);
saveDefaultImage(filein);
repaint();
} catch(IOException e){
} catch(InterruptedException ie){
}
}
public void saveDefaultImage(String filein){
try{
String xmlpath="background.xml";
SAXBuilder builder=new SAXBuilder();
Document xdoc=builder.build(xmlpath);
xdoc.getRootElement().removeChild("bgimage");
xdoc.getRootElement().addContent(new Element("bgimage").setText(filein));
FileOutputStream fos=new FileOutputStream(xmlpath);
XMLOutputter out=new XMLOutputter();
out.output(xdoc, fos);
fos.flush();
fos.close();
} catch(Exception e){
}
}
public static void main(String[] args){
COS newcos=new COS();
COSmp cmp=new COSmp();
cmp.setBounds(720,0,25,600);
cmp.setLayout(null);
loadbg();
f.setSize(825,640);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().setLayout(null);
f.setLayout(null);
newcos.setBounds(5,5,800,600);
newcos.setOpaque(false);
newcos.setLayout(null);
f.setLocation(10,5);
f.getContentPane().add(newcos);
f.add(cmp);
f.setVisible(true);
}
}

我的第二个源文件..

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import org.jdom.*;
import org.jdom.input.*;
import org.jdom.output.*;

public class COSmp extends JPanel implements ActionListener{
public COSmp(){
JLabel whatisthis=new JLabel("I am going to be a start menu i think");
add(whatisthis);
}
public void actionPerformed(ActionEvent e){
}
}

第二个非常简单,但它的所有方法都在第二个中,setbounds、add 等。

我似乎无法让它显示,即使我设置第一个“newcos”就是我所说的第一个,不显示..

有人可以帮助我吗?如果我解释得不够好,请告诉我,我会再试一次。

我也只是想到了这个,xml 文件,background.xml



background2.png

最佳答案

您看不到任何东西,因为:

  • 倒数第二行,您需要将 cmp 添加到 newcos 而不是框架。
  • 您需要在 COSmp 中设置标签的边界。

您需要了解layout managers以及如何使用它们,您这里的代码是站不住脚的。

关于java - JPanel 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1276013/

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