如何使用Applet创建横幅?
解决方法
下面的示例演示如何使用Thread类使用一个applet图像播放声音。 它也使用Graphics类的drawRect(), fillRect(), drawString() 方法。
import java.awt.*; import java.applet.*; public class SampleBanner extends Applet implements Runnable{ String str = "This is a simple Banner "; Thread t ; boolean b; public void init() { setBackground(Color.gray); setForeground(Color.yellow); } public void start() { t = new Thread(this); b = false; t.start(); } public void run () { char ch; for( ; ; ) { try { repaint(); Thread.sleep(250); ch = str.charAt(0); str = str.substring(1, str.length()); str = str + ch; } catch(InterruptedException e) {} } } public void paint(Graphics g) { g.drawRect(1,1,300,150); g.setColor(Color.yellow); g.fillRect(1,1,300,150); g.setColor(Color.red); g.drawString(str, 1, 150); } }
结果
上面的代码示例将产生在一个支持java的web浏览器,结果如下。
View in Browser.