黑马程序员技术交流社区

标题: Swing 项目,点击按钮跳转到另一个页面 [打印本页]

作者: 伍仪华    时间: 2011-8-2 17:13
标题: Swing 项目,点击按钮跳转到另一个页面
如题:本人刚刚接触Swing的知识,对什么都不懂。Swing 项目,点击按钮跳转到另一个页面 该如何实现呢?
作者: 匿名    时间: 2011-8-2 18:10
看看这个,这问题网上好找,我就来个回答:lol
其实就是用Runtime.getRuntime().exec()来实现的。[code]import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFrame;


public class Test_82 extends JFrame{
       
        public Test_82(){
                JButton button=new JButton("跳转");
                button.addActionListener(getActionListener());
                add(button);
                setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                setSize(200,200);
                setVisible(true);
        }
         
       
        public ActionListener getActionListener(){
                return new ActionListener(){
                        public void actionPerformed(ActionEvent e) {
                                try {
                                        //主要看这里
                                        Runtime.getRuntime().exec("explorer.exe http://bbs.itheima.com/thread-935-1-1.html");
                                } catch (IOException e1) {
                                        e1.printStackTrace();
                                }
                        }
                       
                };
        }
       
        public static void main(String args[]){
                new Test_82();
        }
}[/code]




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2