大家好,我是Java的新手,并试图让闪屏或图像显示3秒钟。然后它会进入我的主程序。有没有人有想法如何做到这一点或可以链接到任何教程?
到目前为止,我已经完成了这项工作,但不确定从何处开始。
public static void main(String[] args)
{
splashInit(); // initialize splash overlay drawing parameters
appInit(); // simulate what an application would do
}
答案 0 :(得分:8)
最简单的一种方法是创建JFrame
并在其上添加screen
,然后使用Thread.Sleep(long millies)
试试这段代码:
JWindow window = new JWindow();
window.getContentPane().add(
new JLabel("", new ImageIcon(new URL("http://docs.oracle.com/javase/tutorial/uiswing/examples/misc/SplashDemoProject/src/misc/images/splash.gif")), SwingConstants.CENTER));
window.setBounds(500, 150, 300, 200);
window.setVisible(true);
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
window.setVisible(false);
JFrame frame = new JFrame();
frame.add(new JLabel("Welcome"));
frame.setVisible(true);
frame.setSize(300,100);
window.dispose();
或您可以使用Create a Splash Screen类
SplashScreen答案 1 :(得分:8)
另请参阅How to Create a Splash Screen了解基于AWT的启动功能。
答案 2 :(得分:3)
有一个漂亮的血统初学者教程here,它解释了如何创建这样的屏幕,并逐步指导如何到达那里。我会说,首先不会对谷歌造成伤害。
答案 3 :(得分:0)
我使用此代码。也许您需要更改一些部分:
import javax.swing.*;
import java.awt.*;
public class SplashScreen {
private final JWindow window;
private long startTime;
private int minimumMilliseconds;
public SplashScreen() {
window = new JWindow();
var image = new ImageIcon("C:\\example.jpg");
window.getContentPane().add(new JLabel("", image, SwingConstants.CENTER));
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
window.setBounds((int) ((screenSize.getWidth() - image.getIconWidth()) / 2),
(int) ((screenSize.getHeight() - image.getIconHeight()) / 2),
image.getIconWidth(), image.getIconHeight());
}
public void show(int minimumMilliseconds) {
this.minimumMilliseconds = minimumMilliseconds;
window.setVisible(true);
startTime = System.currentTimeMillis();
}
public void hide() {
long elapsedTime = System.currentTimeMillis() - startTime;
try {
Thread.sleep(Math.max(minimumMilliseconds - elapsedTime, 0));
} catch (InterruptedException e) {
e.printStackTrace();
}
window.setVisible(false);
}
}
这是使用方法:
var splash = new SplashScreen();
splash.show(2000);
// Initializing...
splash.hide();
这将显示飞溅至少2秒。
答案 4 :(得分:-1)
这对我来说很好。getScreenSize(),getWidth()和getHeight()之类的函数可以用自己的值替换。
public class splash extends JWindow
{
public splash()
{
JWindow j=new JWindow();
Dimension d=Toolkit.getDefaultToolkit().getScreenSize();
Icon img= new ImageIcon(this.getClass().getResource("2.jpg"));
JLabel label = new JLabel(img);
label.setSize(200,300);
j.getContentPane().add(label);
j.setBounds(((int)d.getWidth()-722)/2,((int)d.getHeight()-401)/2,722,401);
j.setVisible(true);
try
{
Thread.sleep(6000);
}
catch(InterruptedException e)
{
e.printStackTrace();
}
j.setVisible(false);
}
public static void main(String[] args)
{
splash s=new splash();
}
}