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

资源简介

Java入门-伸展文字(实例30).zip

资源截图

代码片段和文件信息

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

//伸展文字

public class ExtendTextapplet extends applet implements Runnable{
Image image; //该applet的Image对象
Graphics graphics;  //该applet的Graphics对象
int appletWidthappletHeight; //applet的高度宽度
String message; //显示文本
Thread thread; //动画线程
int ypoint=0 xheight; //显示文本的Y坐标和高度
int phase = 0; //状态参数
Font font; //显示文本的字体

public void init(){
font=new Font(“TimesRoman“Font.BOLD30); //实例化字体
appletWidth = getSize().width; //得到applet的宽度
appletHeight = getSize().height;  //得到applet的高度
xheight = appletHeight / 3; //显示文字高度值
ypoint = xheight; //显示文字的Y坐标值
message = getParameter(“Text“); //得到显示信息
if(message==null)
message = “伸展文字“; //设置默认信息
image = createImage(appletWidthappletHeight);  //得到Image实例
graphics = image.getGraphics();  //得到Graphics实例
}  
  
public void start(){
if(thread == null){
thread = new Thread(this);  //实例化线程
thread.start();  //运行线程
}
}     
   
public void upd

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      143846  2004-05-14 18:01  36-1.bmp
     文件      143846  2004-05-14 18:01  36-2.bmp
     文件         201  2004-05-13 18:45  ExtendText.HTML
     文件        2664  2004-05-19 00:31  ExtendTextapplet.class
     文件        3189  2004-05-19 00:30  ExtendTextapplet.java

评论

共有 条评论