当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:14:00  来源:本站整理

[JAVA100例]073、传送参数[Java编程]

赞助商链接



  本文“[JAVA100例]073、传送参数[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

import java.awt.*;
import java.applet.*;
/**
* <p>Title: 带阴影的文字</p>
* <p>Description: 利用Applet和Graphics,实现一个文字的移动广告.</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: ShadowText.java</p>
* @version 1.0
*/
public class ShadowText extends Applet implements Runnable
{
 private Image img;
 private Image offI;
 private Graphics offG;
 private Thread thread = null;
 private int height,width;
 private String text;
 private int FontSize;
 private Font font;
 private int textcolor, backcolor, shadowcolor;
/**
*<br>办法阐明:Applet初始化,浏览器加载Applet是调用.
*<br>输入参数:
*<br>返回范例:
*/
 public void init()
 { 
  width = this.size().width;
  height = this.size().height;
  //获得显示信息
  String s = new String(getParameter("Text"));
 
  text = new String("Hello");
  if(s != null)
   text = s;
  //获得字体大小
  FontSize = 30;
  s = new String(getParameter("FontSize"));
  if(s != null)
   FontSize = Integer.parseInt(s);
  //得到字体颜色
  s = getParameter("Fore");
  textcolor = (s==null) ? 0x000000 : Integer.parseInt(s, 16);
  //获得后台颜色
  s = getParameter("Back");
  backcolor = (s==null) ? 0x000000 : Integer.parseInt(s, 16);
  //获得阴影颜色
  s = getParameter("shadow");
  shadowcolor = (s==null) ? 0x000000 : Integer.parseInt(s, 16);
  //设置后台颜色
  this.setBackground(new Color(backcolor));
  //利用Graphics成立一张图片
  img = createImage(width+300,height);
  Graphics temp = img.getGraphics();
  temp.setColor(new Color(backcolor));
  temp.fillRect(0,0,width,height);
  temp.setColor(new Color(shadowcolor));
  font = new Font("TimesRoman",Font.BOLD,FontSize);
  temp.setFont(font);
  temp.drawString(text,10,height*3/4);
  temp.setColor(new Color(textcolor));
  temp.drawString(text,10-3,height*3/4 - 3);
 
  //构造可掌握的图片对象    
  offI = createImage(width,height);
  offG = offI.getGraphics();
 
 }
/**
*<br>办法阐明:重载start()办法,启动线程
*<br>输入参数:
*<br>返回范例:
*/
 public void start()
 {
  if(thread == null)
  {
   thread = new Thread(this);
   thread.start();
  }
 }
/**
*<br>办法阐明:线程体.绘制屏幕
*<br>输入参数:
*<br>返回范例:
*/
 public void run()
 {
  int x=width;
  while(thread != null)
  {
   try
   {
    offG.drawImage(img,x,0,this);
    repaint();
    thread.sleep(20);
   }
   catch(InterruptedException e){}
x-=3;
   if(x < -img.getWidth(this))
   {
    x = width;
   }
}
 }
/**
*<br>办法阐明:Appletg更新画面调用的办法
*<br>输入参数:Graphics g 画图对象
*<br>返回范例:
*/
 public void update(Graphics g)
 {
  paint(g);
 }
/**
*<br>办法阐明:Applet绘制屏幕的办法
*<br>输入参数:
*<br>返回范例:
*/
 public void paint(Graphics g)
 {
  g.drawImage(offI,0,0,this);
 }
}


  以上是“[JAVA100例]073、传送参数[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 利用Javascript实现网页水印(非图片水印)
  • Java开辟环境的搭建
  • Ubuntu java安装与配置
  • 办理Ubuntu 10.04 Firefox3.6 Java浏览器插件不工作的问
  • Ubuntu重装后Java环境的设置
  • Sun Java进入Ubuntu 10.10软件中央
  • Ubuntu 10.10配置Java开辟环境
  • 在Ubuntu 10.10中配置Java环境变量的办法
  • Ubuntu下Java环境的搭建
  • Ubuntu 10.04 下安装 Java, JRE
  • Ubuntu 10.04下的搭建SUN JAVA开辟环境
  • Ubuntu 12.04安装java7
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .