如何使JFrame(带有计时器)从另一个类打开另一个JFrame

时间:2013-02-28 09:01:05

标签: java swing jframe splash-screen multiple-instances

新来的 - 我的第一个问题。无论如何,我在这里是因为我想创建一个JFrame,我认为它定时为10000毫秒,然后当它关闭时,它应该打开另一个(在另一个类中)。我已经完成了计时器部分,而不是'关闭定时JFrame,并打开另一个'部分。

我记得这样做,并找到了答案。它类似于NewClass.show()('NewClass'是应该打开的类名),然后键入OldClass.dispose()('OldClass'是应该关闭的类名。)

到目前为止,这是我的代码:

import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.ImageObserver;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.Timer;

public class SplashScreen extends JPanel {

public SplashScreen() {
 setOpaque(false);
 setLayout(new FlowLayout());
}

public static void main(String[] args) {

    final JFrame frame = new JFrame("Loading game...");
    frame.setSize(800, 600);
    frame.setResizable(false);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    SplashScreen background = new SplashScreen();
    frame.add(background);

    Timer timer = new Timer(10000, new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            frame.setVisible(false);
            frame.dispose();
           //I want to place my code here so then this class will close, and then the other class will open
        }
    });
    timer.setRepeats(false);
    timer.start();

    Toolkit toolkit = Toolkit.getDefaultToolkit();
    Image image = toolkit.getImage("Waiting.png");
    Point hotSpot = new Point(0,0);
    Cursor cursor = toolkit.createCustomCursor(image, hotSpot, "Cursor");
    frame.setCursor(cursor);

    Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
    int w = frame.getSize().width;
    int h = frame.getSize().height;
    int x = (dim.width - w) / 2;
    int y = (dim.height - h) / 2;

    frame.setLocation(x, y);

    JButton button = new JButton();

    JPanel panel = new JPanel();

}

public void paint(Graphics g) {
    Image a=Toolkit.getDefaultToolkit().getImage("Splash Screen.gif");
    g.drawImage(a,0,0,getSize().width,getSize().height,this);
    super.paint(g);

    }
}

我没有制作第二个类(它将被称为'LoadingScreen.class',但我会,它将只有'JSomethings'或其他任何东西(如JFrame,JPanel等......)

我可以创建第二个类,但我想要的是在计时器以10秒或10000毫秒结束后关闭的第一个类,然后自动打开第二个类。

由于

3 个答案:

答案 0 :(得分:1)

尝试将调用添加到您的第二个课程,如下所示

Timer timer = new Timer(10000, new ActionListener() {
    public void actionPerformed(ActionEvent e) {
        frame.setVisible(false);
        frame.dispose();
       //I want to place my code here so then this class will close, and then the other class will open

       //SplashScreen screen = new SplashScreen();
       //screen.showGUI();
    }
});

另一个好习惯是最后拨打frame.setVisible(true),这样你就不会在屏幕上看到任何漂移。

答案 1 :(得分:0)

假设你的第二堂课就像,

public class LoadingScreen extends JFrame   
{    
    public LoadingScreen(String title)  
    {   
        super(title);  
    }

    public void showGUI()   
    {
        //  Do whatever you want
        setSize(500,500);
        setVisible(true);
    }
}

你只需要打电话,

LoadingScreen loadScreen = new LoadingScreen("Loading screen....");
loadscreen.showGUI();

答案 2 :(得分:0)

当你调用frame.setVisible(true)时你不会得到错误非静态方法不能从静态上下文中引用吗?