[求助]一个界面如何跳转到另一个界面
(1)import java.awt.*;import java.awt.event.*;
import javax.swing.*;
class SplashWindow extends JWindow implements ActionListener{
JLabel back=new JLabel(new ImageIcon("photo.gif")); //显示图片
JProgressBar progressBar=new JProgressBar(1,100); //进度条
Timer timer; //时间组件
int n=100;
public SplashWindow(){
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); //设置鼠标形状
progressBar.setStringPainted(true); //允许进度条显示文本
progressBar.setString("正在加载程序~~~~"); //设置进度条文本
getContentPane().add(back,"Center"); //将标签加到内容面板 设置标签
getContentPane().add(progressBar,"South"); //将标签加到内容面板 设置标签
setSize(600,400); //设置界面大小
toFront(); //使界面移到最前
setLocation(200,200);
setVisible(true);
timer=new javax.swing.Timer(100,this); //建立时间组件
timer.addActionListener(this); //注册行为
timer.start();
}
public void actionPerformed(ActionEvent e){ //动作事件的方法
if(n>0){
progressBar.setValue(100-n);
timer.restart();
n--;
}
else{
timer.stop(); //停止计时
dispose(); //关闭当前窗口
}
}
public static void main(String args[]){
SplashWindow splashWindow=new SplashWindow();
}
}
(2)import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class MainWindow extends JFrame{
public MainWindow(){
String metal="javax.swing.plaf.metal.MetalLookAndFeel";
try{
UIManager.setLookAndFeel(metal);
SwingUtilities.updateComponentTreeUI(this);
this.pack();
}catch(Exception e){
System.out.println("不能设置这个界面风格:"+e);
}
setIconImage((new ImageIcon("")).getImage());
setSize(300,200);
setTitle("医院信息系统");
Dimension screen=Toolkit.getDefaultToolkit().getScreenSize();
Dimension my=this.getSize();
setLocation((screen.width-my.width)/2,(screen.height-my.height)/2);
setVisible(true);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
}
public static void main(String args[]){
MainWindow mainFrame=new MainWindow();
}
}
请问大侠:如何在运行(1)以后直接跳转到(2)啊???