我正在尝试让我的应用程序显示一个简单的加载对话框,以便用户知道时间密集型流程何时工作以及何时完成。我只是希望它使用我下载的gif显示一个简单的“加载”。我已经尝试过只使用文字,但它仍然无效。
我可以在需要时显示(并消失)对话框,显示后对话框(或框架)上没有显示任何问题。我尝试了很多不同的技术,并且都给出了相同的结果,一个空白的对话框。
我终于创建了一个单独的类来显示对话框(使用加载gif),我让它正确显示(单独),但是当我从主应用程序运行它时,它再次显示一个黑色对话框。我测试了将gif放入JOptionPane并且它可以工作,问题是我无法随意关闭它。
这是我的自定义代码。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.xml.parsers.*;
import javax.xml.xpath.*;
import java.util.logging.*;
import org.w3c.dom.*;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import javax.swing.filechooser.FileNameExtensionFilter;
public class Loader implements Runnable {
final JFileChooser jfc = new JFileChooser();
static JFrame frame = new JFrame();
Frame parentUI = new Frame();
JDialog dialog = new JDialog();
JLabel lbl_filename = new JLabel();
JLabel lbl_path = new JLabel();
static Loader load = new Loader(null);
public static void main(String[] args) throws InterruptedException, InvocationTargetException {
load.run();
frame.setVisible(true);
}
public Loader(Frame parent) {
init();
parentUI = parent;
}
@Override
public void run() {
createDialog(parentUI);
}
public final void init() {
JButton btn = new JButton("Open");
frame.setTitle("Loader Test");
frame.setSize(500, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setLayout(new FlowLayout());
btn.addActionListener(new Action1());
frame.add(btn);
frame.add(lbl_filename);
frame.add(lbl_path);
}
class Action1 implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
openFile();
load.Close();
}
}
private void createDialog(final Frame parent) {
dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
dialog.setTitle("Loader");
URL url = this.getClass().getResource("/resource/loader.gif");
Icon icon = new ImageIcon(url);
JLabel label = new JLabel(icon);
dialog.add(label);
dialog.pack();
dialog.setLocationRelativeTo(parent);
}
public void Show(Boolean visible) {
this.run();
dialog.setVisible(visible);
}
public void Close() {
dialog.setVisible(false);
}
private void setJFCFilter(String file, String ext) {
FileNameExtensionFilter filter = new FileNameExtensionFilter(file, ext);
jfc.setFileFilter(filter);
}
private void openFile() {
File default_dir = new File(".");
jfc.setCurrentDirectory(default_dir);
setJFCFilter("Scalable Vector Graphics", "svg");
int returnVal = jfc.showOpenDialog(parentUI);
if (returnVal == JFileChooser.APPROVE_OPTION) {
String path = jfc.getSelectedFile().getAbsolutePath();
String fileName = jfc.getSelectedFile().getName();
lbl_filename.setText(fileName);
lbl_path.setText(path);
load.Show(true);
createDoc(path);
load.Close();
}
}
private void createDoc(String file) {
try {
NodeList svgIDPaths;
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(file);
String xpathIDExp = "//g/@id";
XPathFactory xpf = XPathFactory.newInstance();
XPath xpath = xpf.newXPath();
XPathExpression expression = xpath.compile(xpathIDExp);
svgIDPaths = (NodeList)expression.evaluate(doc, XPathConstants.NODESET);
} catch (Exception ex) {
Logger.getLogger(Loader.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
编辑:使用此文件进行测试 - > svg_test.svg
我试过这样称呼它:
loader.show(true);
还有像这样的自己的线程:
private void load(final Boolean visible) {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
loader.show(visible);
}
});
t.start();
}
这两种方法都不起作用并给我相同的结果,一个空白的对话框。我以前遇到过这个问题,但是放弃并删除了它(加载对话框)。我用进度条和简单的文本尝试过它,似乎没什么用。
我也在JOptionPane中尝试了它并且它有效,但这是不可取的(我希望在我不想通过按钮点击时关闭/打开)。
private void load() {
ImageIcon icon = new ImageIcon(MainForm.class.getResource("/resource/loader.gif").getFile());
JOptionPane.showMessageDialog(null, "Loading...", "Loader", JOptionPane.INFORMATION_MESSAGE, icon);
}
我知道你不能在EDT上运行多个对话框并且必须使用一个单独的线程,但是我使用的是一个单独的线程,它不能工作(它本身就可以工作)。
(另请注意,我有一个正在运行/打开第二个对话框的主应用程序(框架)。
感谢任何帮助。
答案 0 :(得分:3)
你看起来有一个Swing线程问题,你在事件线程上长时间运行的代码弄乱了图像的绘制,我的猜测是长时间运行的代码在你的createDoc方法中。考虑从后台线程(例如来自SwingWorker)调用该函数,并仅在工作者完成其工作后在您的加载对象上调用close。例如:
class Action1 implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
openFile();
// load.Close(); // get rid of this
}
}
// .......
private void openFile() {
// ....
load.Show(true); // load dialog on event thread
new SwingWorker<Void, Void>() {
protected Void doInBackground() throws Exception {
createDoc(path); // call this from background thread
return null;
};
protected void done() {
load.Close(); // only call this once createDoc has completed
// probably should call get() in here to catch all exceptions
};
}.execute();
}