在java applet中按下按钮后绘制线条

时间:2014-10-02 21:03:34

标签: java applet

当我尝试以下错误来了 令牌上的语法错误"(" ,;预期 令牌上的语法错误")",;预期

在ButtonTest.actionPerformed(ButtonTest.java:58)

import java.awt.*;
import java.awt.event.*;//step-1
import java.applet.Applet;

public class ButtonTest extends Applet implements ActionListener//step-2
{
    Button b1,b2,b3;
    Font f;
    Graphics gc;
    public void init()
    {
            b1=new Button("Request");
            b2=new Button("Grant");
            b3=new Button("Accept");

            f=new Font("Arial",Font.BOLD,12);

            b1.setFont(f);
            b2.setFont(f);
            b3.setFont(f);

            b1.addActionListener(this);
            b2.addActionListener(this);
            b3.addActionListener(this);

            add(b1);
            add(b2);
            add(b3);
    }

    public void paint(Graphics gc) 
    {
        gc.drawLine(100, 150, 100, 400); 
        gc.drawLine(300, 150, 300, 400); 
        gc.drawOval(95, 155, 10, 10);  //1.1
        gc.drawOval(95, 225, 10, 10);  //1.2
        gc.drawOval(95, 295, 10, 10);  //1.3
        gc.drawOval(95, 365, 10, 10);  //1.4
        gc.drawOval(295, 155, 10, 10);  //2.1
        gc.drawOval(295, 225, 10, 10);  //2.2
        gc.drawOval(295, 295, 10, 10);  //2.3
        gc.drawOval(295, 365, 10, 10);  //2.4

    }
    public void myPaint(Graphics gc)  // this line is not working*******???????
                {
                    gc.drawLine(95, 155, 295, 225);  //1.1 to 2.2
                    gc.drawLine(95, 295, 295, 225);  //1.3 to 2.2
                    gc.drawLine(95, 295, 295, 365);  //1.3 to 2.4
                    gc.drawString(">>>", 260, 220); 
                    gc.drawString(">>>", 218, 255);
                    gc.drawString(">>>", 267, 365);
                } 
    public void actionPerformed(ActionEvent ae)
    {
            if(ae.getSource()==b1)
            {
                    myPaint(gc);     //this line is not working
                    setBackground(Color.red);

             }
            else if(ae.getSource()==b2)
            {
                 setBackground(Color.green);
            }
            else{
                 setBackground(Color.blue);
            }

     }
}
/*<applet code="ButtonTest" width=300 height=300>

* /

错误是 令牌上的语法错误&#34;(&#34; ,;预期 令牌上的语法错误&#34;)&#34;,;预期

在ButtonTest.actionPerformed(ButtonTest.java:58)

1 个答案:

答案 0 :(得分:0)

您的代码中存在一些错误。编辑代码之后

public void myPaint(Graphics gc)

的工作原理。这条线

myPaint();

不起作用,因为myPaint需要Graphics类型的参数。方法调用应该看起来像

myPaint(gc);

我不知道你真正想做什么,但你可以通过调用

来获取applet的画布
this.getGraphics()

无需在gc中使用myPaint作为参数,也无需将Graphic存储为班级内的成员。

希望有所帮助