• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java入门-波浪文字(实例28).zip

资源截图

代码片段和文件信息

import java.awt.*;
import java.applet.*;

//波浪文字

public class WaveTextapplet extends applet implements Runnable {

  String message;  //显示文本
  int directphase; //运动方向参数
  Thread thread; //波浪运动线程
  char words[]; //显示文本的字符数组
  Image image;  //Image对象
  Graphics graphics; //Graphics对象
  Color colors[]; //显示文本颜色
  private Font font; //显示字体
  private FontMetrics fontMetric; //显示字体的 FontMetrics对象

   public void init() {   
     direct=1;  //初始方向值
     phase = 0; 
     message = getParameter(“Text“); //得以显示文本
     if (message==null){ //如果文本为空
      message=“波浪文字“; //设置默认文本
     }
     setBackground(Color.black); //设置背景色
     
     words =  new char [message.length()]; //初始化显示字符数组
     message.getChars(0message.length()words0); 
     image = createImage(getSize().widthgetSize().height); //得到Image实例
     graphics = image.getGraphics(); //得到Graphics实例
 
     font = new Font(“TimesRoman“Font.BOLD36); //设置显示字体
     fontMetric=getFontMetrics(font);  //得到字体的F

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      243066  2004-05-14 16:57  34-1.bmp
     文件      243066  2004-05-14 16:58  34-2.bmp
     文件         195  2004-05-13 18:23  WaveText.HTML
     文件        2764  2004-05-18 00:41  WaveTextapplet.class
     文件        2650  2004-05-18 00:42  WaveTextapplet.java

评论

共有 条评论