E4A易安卓如何在单击主窗口的按钮进入窗口1,详细点谢谢。
1个回答
展开全部
单击某个按纽,就打开一个窗口和模式窗口怎么做啊
我有一段java窗口菜单程序:
import java.awt.*;
import java.awt.event.*;
public class report extends Frame implements ActionListener{
Panel p=new Panel();
Button btn=new Button("退出");
MenuBar mb=new MenuBar();
Menu m1=new Menu("报表统计");
MenuItem day=new MenuItem("日报表");
MenuItem month=new MenuItem("月报表");
report(){
super("report");
setSize(350,200);
add("South",p);
p.add(btn);
btn.addActionListener(this);
m1.add(day);
m1.add(month);
day.addActionListener(this);
month.addActionListener(this);
mb.add(m1);
setMenuBar(mb);
show();
}
public static void main(String args[]){
new report();
}
public void actionPerformed(ActionEvent e){
if (e.getActionCommand()=="日报表")
(跳转到日报表页面report.jsp)????
else if (e.getActionCommand()=="月报表")
(跳转到月报表页面)??????
}
}
请问当打开这个窗口时,当按下“日报表”时,怎么跳转到日报表的report.jsp页面,并在该窗口中执行????
谢谢!
我有一段java窗口菜单程序:
import java.awt.*;
import java.awt.event.*;
public class report extends Frame implements ActionListener{
Panel p=new Panel();
Button btn=new Button("退出");
MenuBar mb=new MenuBar();
Menu m1=new Menu("报表统计");
MenuItem day=new MenuItem("日报表");
MenuItem month=new MenuItem("月报表");
report(){
super("report");
setSize(350,200);
add("South",p);
p.add(btn);
btn.addActionListener(this);
m1.add(day);
m1.add(month);
day.addActionListener(this);
month.addActionListener(this);
mb.add(m1);
setMenuBar(mb);
show();
}
public static void main(String args[]){
new report();
}
public void actionPerformed(ActionEvent e){
if (e.getActionCommand()=="日报表")
(跳转到日报表页面report.jsp)????
else if (e.getActionCommand()=="月报表")
(跳转到月报表页面)??????
}
}
请问当打开这个窗口时,当按下“日报表”时,怎么跳转到日报表的report.jsp页面,并在该窗口中执行????
谢谢!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询