gpt4 book ai didi

在选择器对话框中单击打开后,Java JFileChooser 打开备份

转载 作者:行者123 更新时间:2023-12-04 07:04:49 26 4
gpt4 key购买 nike

当我在我正在处理的项目中使用 JFileChooser 时,一切正常,除了一个问题外没有任何问题。

当您在对话框中单击“打开”时,它会更改我的背景,然后 JFileChooser 对话框会再次打开。谁能告诉我我需要做什么才能避免这种情况发生??

下面是我所有的来源..


import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.net.*;
import java.util.*;
import org.w3c.dom.*;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

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(){
}
public void paintComponent(Graphics g){
if(bgImage!=null){
g.drawImage(bgImage,0,0,this);
chbg.setBounds(10,10,150,25);
chbg.addActionListener(this);
add(chbg);
}
else{
g.drawString(message,40,40);
}
}
public static void loadbg(){
try{
String xmlpath="background.xml";
DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();
try{
String fimg="";
DocumentBuilder db=dbf.newDocumentBuilder();
Document dom=db.parse(xmlpath);
dom.getDocumentElement().normalize();
NodeList ndlst=dom.getElementsByTagName("background");
Node firstnd=ndlst.item(0);
if(firstnd.getNodeType()==Node.ELEMENT_NODE){
Element firstele=(Element)firstnd;
NodeList firstnamenodelist=firstele.getElementsByTagName("bgimage");
Element firstnamele=(Element)firstnamenodelist.item(0);
NodeList firstname=firstnamele.getChildNodes();
fimg=((Node) firstname.item(0)).getNodeValue();
}
getFileImage(fimg);
} catch(Exception e){
}
} 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){
String newdefbg=filein;
//don't mind this method, i am still working on it...
}
public static void main(String[] args){
COS newcos=new COS();
loadbg();
f.setSize(825,640);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().setLayout(null);
newcos.setBounds(5,5,800,600);
f.setLocation(10,5);
f.getContentPane().add(newcos);
f.setVisible(true);
}
}

最佳答案

只是因为您在每次重绘时都添加了新的 Action 监听器。Paint 方法仅用于绘画,没有其他用途。您必须重新考虑您的策略。

关于在选择器对话框中单击打开后,Java JFileChooser 打开备份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1272977/

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