一个小程序,自己写一个网页文件嵌入运行就行了,不过没什么技术含量,仅作为一个学习过程加以收藏。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class RandomClick extends JApplet
{Color c;int x,y;
public void init()
{addMouseListener(new MouseAdapter()
{public void mousePressed(MouseEvent e)
{x=e.getX();y=e.getY();
repaint();
}
});
}
public void paint(Graphics g)
{c=new Color((int)(Math.random()*256),(int)(Math.random()*256),(int)(Math.random()*256));
g.setColor(c);
g.fillOval(x-10,y-10,20,20);
}
}
评论