制作applet

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了制作applet相关的知识,希望对你有一定的参考价值。

我有问题,我没有得到我的结果,为什么?

public class cycle extends JApplet implements ActionListener {

  Panel panel = new Panel();
  JButton left = new JButton("left");
  JButton right = new JButton("right");
  Container c = getContentPane();

  public void frame() {
    Panel panel = new Panel();
    JButton left = new JButton("left");
    JButton right = new JButton("right");
    c.add(left);
    c.add(right);
  }

  public static void main(String[] args) {
    JFrame f = new JFrame();
    f.setTitle("Move the ball");
    f.setSize(500, 500);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setVisible(true);
  }

  @Override
  public void actionPerformed(ActionEvent e) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
  }

}
答案

以这种方式更改您的代码:

  • Buttons添加到你的JPanel
  • Panel添加到ContentPane
  • cycle对象添加到JFrame

这是修改后的代码

public class cycle extends JApplet implements ActionListener {

  private JPanel panel;
  private JButton left;
  private JButton right;
  private Container c = getContentPane();

  public cycle() {
    panel = new JPanel();
    left = new JButton("left");
    right = new JButton("right");
    panel.add(left);
    panel.add(right);
    c.add(panel);
  }

  public static void main(String[] args) {
    JFrame f = new JFrame();
    f.setTitle("Move the ball");
    f.setSize(500, 500);
    f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

    f.add(new cycle());

    f.setVisible(true);
  }

  @Override
  public void actionPerformed(ActionEvent e) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
  }

}

也:

  • 我建议你重命名你的类Cycle,这是一个以大写字母开头的Java约定。
  • 使用WindowConstants.EXIT_ON_CLOSE而不是JFrame.EXIT_ON_CLOSE
  • 正如Andrew Thompson的评论中所述:不要混合使用Swing和AWT组件。 (小组应该是JPanel

以上是关于制作applet的主要内容,如果未能解决你的问题,请参考以下文章

制作applet

拥有的50个CSS代码片段(上)

applet 中的双缓冲是如何工作的?

使用 Java Applet 使用箭头键移动球

python 用于在终端中运行的sublime text 3的简单代码片段制作工具

如何在 JFrame 中实现希尔伯特曲线