当前位置: 代码迷 >> Java相关 >> [求助]一个界面如何跳转到另一个界面
  详细解决方案

[求助]一个界面如何跳转到另一个界面

热度:200   发布时间:2007-09-05 01:08:47.0
[求助]一个界面如何跳转到另一个界面
(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)啊???
搜索更多相关的解决方案: 界面  鼠标  import  awt  java  

----------------解决方案--------------------------------------------------------

在(1)里面调用(2)的main()方法。


----------------解决方案--------------------------------------------------------
我大概看了一下
首先重新组织你的界面结构。

不应该是谁跳到谁这个问题,而应该是决定应该由谁显示出来就合理了。

弄一个主程序类Main
在里面按照顺序显示(1)和(2)即可,程序执行的时候从Main开始执行

----------------解决方案--------------------------------------------------------
这个我也不会  学下
----------------解决方案--------------------------------------------------------

请问如何在(1)里面调用(2)的main()方法???


----------------解决方案--------------------------------------------------------
在(1)中实现一个(2)的实例,然后调用  实例名.main()方法.
----------------解决方案--------------------------------------------------------
以下是引用xinghun868在2007-9-5 1:08:47的发言:
(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(); //关闭当前窗口
MainWindow.main(null);//加上这个,你的意思就是当销毁1的时候,出现2吧?
}
}
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)啊???


----------------解决方案--------------------------------------------------------

  相关解决方案