这是我的启动画面代码,
public class SplashScreen extends JWindow {
private static final long serialVersionUID = 1L;
private BorderLayout borderLayout = new BorderLayout();
private JLabel imageLabel = new JLabel();
private JProgressBar progressBar = new JProgressBar(0, 100);
public SplashScreen(ImageIcon imageIcon) {
imageLabel.setIcon(imageIcon);
setLayout(borderLayout);
add(imageLabel, BorderLayout.CENTER);
add(progressBar, BorderLayout.SOUTH);
pack();
setLocationRelativeTo(null);
}
public void showScreen() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
setVisible(true);
}
});
}
public void close() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
setVisible(false);
dispose();
}
});
}
public void setProgress(final String message, final int progress) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
progressBar.setValue(progress);
if (message == null) {
progressBar.setStringPainted(false);
} else {
progressBar.setStringPainted(true);
}
progressBar.setString("Loading " + message + "...");
}
});
}
}
从我这样调用的主要方法
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
try {
UIManager.setLookAndFeel(UIManager
.getSystemLookAndFeelClassName());
SplashScreen splashScreen = new SplashScreen(new ImageIcon("images/splash.jpg"));
splashScreen.showScreen();
AppFrame frame = new AppFrame(splashScreen);
} catch (Exception e) {
appLogger.error(e.getMessage(), e);
}
}
});
}
在我调用的AppFrame的构造函数中, splashScreen.setProgress(msg,val) 更新进度条的方法。但是没有显示出飞溅。它仅在最后显示帧时才显示,即使负载需要很长时间。但如果我把这三行
SplashScreen splashScreen = new SplashScreen(new ImageIcon("images/splash.jpg"));
splashScreen.showScreen();
AppFrame frame = new AppFrame(splashScreen);
在invokeLater()之外的,会显示启动画面,并且进度条会很好地更新。我相信GUI更新应该在invokeLater中。可能是什么问题?
顺便说一下,AppFrame加载了我的应用程序的各个面板。
修改 我的AppFrame的模拟如下所示。
public class AppFrame extends JFrame {
public AppFrame(SplashScreen splashScreen) {
JPanel test = new JPanel();
test.setLayout(new GridLayout(0, 10));
splashScreen.setProgress("jlabel", 10);
for(int i = 0; i < 10000; i++) {
test.add(new JButton("Hi..." + i));
splashScreen.setProgress("jbutton", (int)(i * 0.1));
}
add(new JScrollPane(test));
setPreferredSize(new Dimension(800, 600));
pack();
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setLocationRelativeTo(null);
splashScreen.setProgress("complete", 100);
setVisible(true);
}
}
答案 0 :(得分:4)
嗯,看看我放在一起使用SplashScreen
类的工作样本(仅使用简单的Timer
和ActionListener
来增加ProgressBar
的值直到100并显示一个框架):
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Font;
import java.awt.event.ActionListener;
import javax.swing.*;
public class SplashScreen extends JWindow {
private static JProgressBar progressBar = new JProgressBar();
private static SplashScreen splashScreen;
private static int count = 1, TIMER_PAUSE = 25,PROGBAR_MAX=100;
private static Timer progressBarTimer;
ActionListener al = new ActionListener() {
@Override
public void actionPerformed(java.awt.event.ActionEvent evt) {
progressBar.setValue(count);
System.out.println(count);
if (PROGBAR_MAX == count) {
splashScreen.dispose();//dispose of splashscreen
progressBarTimer.stop();//stop the timer
createAndShowFrame();
}
count++;//increase counter
}
};
public SplashScreen() {
createSplash();
}
private void createSplash() {
Container container = getContentPane();
JPanel panel = new JPanel();
panel.setBorder(new javax.swing.border.EtchedBorder());
container.add(panel, BorderLayout.CENTER);
JLabel label = new JLabel("Hello World!");
label.setFont(new Font("Verdana", Font.BOLD, 14));
panel.add(label);
progressBar.setMaximum(PROGBAR_MAX);
container.add(progressBar, BorderLayout.SOUTH);
pack();
setLocationRelativeTo(null);
setVisible(true);
startProgressBar();
}
private void startProgressBar() {
progressBarTimer = new Timer(TIMER_PAUSE, al);
progressBarTimer.start();
}
private void createAndShowFrame() {
JFrame frame = new JFrame();
frame.setSize(500, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
splashScreen = new SplashScreen();
}
});
}
}
答案 1 :(得分:2)
从另一个invokedLater
调用invokeLater
。 runnable
只有在完成第一个的执行时才会执行。
您应该像这样修改Splashscreen代码:
...
private void runInEdt(final Runnable runnable) {
if (SwingUtilities.isEventDispatchThread())
runnable.run();
else
SwingUtilities.invokeLater(runnable);
}
public void showScreen() {
runInEdt(new Runnable() {
public void run() {
setVisible(true);
}
});
}
public void close() {
runInEdt(new Runnable() {
public void run() {
setVisible(false);
dispose();
}
});
}
public void setProgress(final String message, final int progress) {
runInEdt(new Runnable() {
public void run() {
progressBar.setValue(progress);
if (message == null)
progressBar.setStringPainted(false);
else
progressBar.setStringPainted(true);
progressBar.setString("Loading " + message + "...");
}
});
}
答案 2 :(得分:0)
Thread l_splash_thread = new Thread(
new SplashScreen ());
l_splash_thread.start();
try {
l_splash_thread.join();
} catch (InterruptedException e1) {
e1.printStackTrace();
}
我认为这样你可以抓住你的闪屏。