swing中点击一个按钮然后跳转到一个指定的url连接怎么实现呢?
[code="java"]
jprint.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
String stuid = (String)((Vector)UpCenterPanel.stuInfo.get(UpCenterPanel.table.getSelectedRow())).get(0);
System.out.println("stuid="+stuid);
//在这里跳转
}
});
[/code]
http://blog.csdn.net/casularm/archive/2009/01/18/3826324.aspx
http://www.blogjava.net/Unmi/archive/2009/03/14/124111.html
http://www.diybl.com/course/3_program/java/javashl/2008510/115157.html
上面的一些资料可以启发你