转载的学习下
package com.huaxia.wang;
import java.util.*;
import java.awt.*;
import java.applet.*;
import java.text.*;
/**
* @目的:时钟的小程序
* @author Rachel Gollub
* @modified Daniel Peek replaced circle drawing calculation, few more changes
*/
public class Clock extends Applet implements Runnable {
private volatile Thread timer; // The thread that displays clock
private int lastxs, lastys, lastxm,
lastym, lastxh, lastyh; // Dimensions used to draw hands
private SimpleDateFormat formatter; // Formats the date displayed
private String lastdate; // String to hold date displayed
private Font clockFaceFont; // Font for number display on clock
private Date currentDate; // Used to get date to display
private Color handColor; // Color of main hands and dial
private Color numberColor; // Color of second hand and numbers
private int xcenter = 80, ycenter = 55; // Center position
public void init() {
int x,y;
lastxs = lastys = lastxm = lastym = lastxh = lastyh = 0;
formatter = new SimpleDateFormat ("EEE MMM dd hh:mm:ss yyyy",
Locale.getDefault());
currentDate = new Date();
lastdate = formatter.format(currentDate);
clockFaceFont = new Font("Serif", Font.PLAIN, 14);
handColor = Color.blue;
numberColor = Color.darkGray;
try {
setBackground(new Color(Integer.parseInt(getParameter("bgcolor"),
16)));
} catch (NullPointerException e) {
} catch (NumberFormatException e) {
}
try {
handColor = new Color(Integer.parseInt(getParameter("fgcolor1"),
16));
} catch (NullPointerException e) {
} catch (NumberFormatException e) {
}
try {
numberColor = new Color(Integer.parseInt(getParameter("fgcolor2"),
16));
} catch (NullPointerException e) {
} catch (NumberFormatException e) {
}
resize(300,300); // Set clock window size
}
// Paint is the main part of the program
public void update(Graphics g) {
int xh, yh, xm, ym, xs, ys;
int s = 0, m = 10, h = 10;
String today;
currentDate = new Date();
formatter.applyPattern("s");
try {
s = Integer.parseInt(formatter.format(currentDate));
} catch (NumberFormatException n) {
s = 0;
}
formatter.applyPattern("m");
try {
m = Integer.parseInt(formatter.format(currentDate));
} catch (NumberFormatException n) {
m = 10;
}
formatter.applyPattern("h");
try {
h = Integer.parseInt(formatter.format(currentDate));
} catch (NumberFormatException n) {
h = 10;
}
// Set position of the ends of the hands
xs = (int) (Math.cos(s * Math.PI / 30 - Math.PI / 2) * 45 + xcenter);
ys = (int) (Math.sin(s * Math.PI / 30 - Math.PI / 2) * 45 + ycenter);
xm = (int) (Math.cos(m * Math.PI / 30 - Math.PI / 2) * 40 + xcenter);
ym = (int) (Math.sin(m * Math.PI / 30 - Math.PI / 2) * 40 + ycenter);
xh = (int) (Math.cos((h*30 + m / 2) * Math.PI / 180 - Math.PI / 2) * 30
+ xcenter);
yh = (int) (Math.sin((h*30 + m / 2) * Math.PI / 180 - Math.PI / 2) * 30
+ ycenter);
// Get the date to print at the bottom
formatter.applyPattern("EEE MMM dd HH:mm:ss yyyy");
today = formatter.format(currentDate);
g.setFont(clockFaceFont);
// Erase if necessary
g.setColor(getBackground());
if (xs != lastxs || ys != lastys) {
g.drawLine(xcenter, ycenter, lastxs, lastys);
g.drawString(lastdate, 5, 125);
}
if (xm != lastxm || ym != lastym) {
g.drawLine(xcenter, ycenter-1, lastxm, lastym);
g.drawLine(xcenter-1, ycenter, lastxm, lastym);
}
if (xh != lastxh || yh != lastyh) {
g.drawLine(xcenter, ycenter-1, lastxh, lastyh);
g.drawLine(xcenter-1, ycenter, lastxh, lastyh);
}
// Draw date and hands
g.setColor(numberColor);
g.drawString(today, 5, 125);
g.drawLine(xcenter, ycenter, xs, ys);
g.setColor(handColor);
g.drawLine(xcenter, ycenter-1, xm, ym);
g.drawLine(xcenter-1, ycenter, xm, ym);
g.drawLine(xcenter, ycenter-1, xh, yh);
g.drawLine(xcenter-1, ycenter, xh, yh);
lastxs = xs; lastys = ys;
lastxm = xm; lastym = ym;
lastxh = xh; lastyh = yh;
lastdate = today;
currentDate = null;
}
public void paint(Graphics g) {
g.setFont(clockFaceFont);
// Draw the circle and numbers
g.setColor(handColor);
g.drawArc(xcenter-50, ycenter-50, 100, 100, 0, 360);
g.setColor(numberColor);
g.drawString("9", xcenter-45, ycenter+3);
g.drawString("3", xcenter+40, ycenter+3);
g.drawString("12", xcenter-5, ycenter-37);
g.drawString("6", xcenter-3, ycenter+45);
// Draw date and hands
g.setColor(numberColor);
g.drawString(lastdate, 5, 125);
g.drawLine(xcenter, ycenter, lastxs, lastys);
g.setColor(handColor);
g.drawLine(xcenter, ycenter-1, lastxm, lastym);
g.drawLine(xcenter-1, ycenter, lastxm, lastym);
g.drawLine(xcenter, ycenter-1, lastxh, lastyh);
g.drawLine(xcenter-1, ycenter, lastxh, lastyh);
}
public void start() {
timer = new Thread(this);
timer.start();
}
public void stop() {
timer = null;
}
public void run() {
Thread me = Thread.currentThread();
while (timer == me) {
try {
Thread.currentThread().sleep(100);
} catch (InterruptedException e) {
}
repaint();
}
}
public String getAppletInfo() {
return "Title: A Clock \n"
+ "Author: Rachel Gollub, 1995 \n"
+ "An analog clock.";
}
public String[][] getParameterInfo() {
String[][] info = {
{"bgcolor", "hexadecimal RGB number",
"The background color. Default is the color of your browser."},
{"fgcolor1", "hexadecimal RGB number",
"The color of the hands and dial. Default is blue."},
{"fgcolor2", "hexadecimal RGB number",
"The color of the second hand and numbers. Default is dark gray."}
};
return info;
}
}
分享到:
相关推荐
本示例中的"利用JAVA applet绘制的时钟"是一个基于Java Applet实现的模拟时钟,它能够实时显示当前时间,就像实际的物理时钟一样。 1. **Java Applet基础知识**: - Java Applet是一种特殊的Java程序,它嵌入到...
在这个例子中,`Clock2.java` 文件是Java源代码,它定义了一个继承自Java的`Applet`类的子类,并实现了时钟的逻辑。这个类可能包含了一个`paint()`方法,该方法负责在Applet的画布上绘制时钟的指针和数字。同时,它...
### 使用Java Applet实现的时钟程序解析 #### 一、概述 本文将详细介绍一个使用Java Applet编写的简单时钟程序。该程序能够显示一个动态的时钟模拟画面,实时更新时间显示,并且能够在浏览器中运行。我们将从代码...
经典JAVA(Applet)教程课件,PPT。
标题和描述中的"Java_Clock.rar_Clock.Java_clock java_java漂亮界面_时钟 java_时钟,Applet"明确指出这是一个用Java编写的时钟程序,它具有美观的界面,并且是基于Applet实现的。 首先,让我们来了解一下Applet。...
这是一个JavaGUI程序设计的完整作品 1.带完整的报告 2.带详细的使用方法 ...这是一个显示时钟的java Applet 用JavaGUI编程实现 能实现机械表面和电子表面的单机切换 能实现与网页文件的交互选择改变市区
【Java实现的网页版电子时钟】 在网页中嵌入电子时钟是一项常见的需求,而Java Applet是一种能够在浏览器环境中运行的小型Java程序,非常适合用于此类任务。本项目利用Java编程语言,结合Applet技术,创建了一个...
在这个“java的图形化,时钟经典案例”中,我们聚焦于一个用Java实现的时钟程序。这个程序包含了三个关键文件:`.class`、`.java` 和 `.html`,分别代表了编译后的Java类文件、源代码文件和HTML文件,这表明该程序...
java做的时钟,实时显示时间,钟面带数字
Java Applet日历是一款基于Java编程语言的小程序,它集成了日历、时钟功能,并且具有播放背景音乐的能力,为用户提供了一种便捷且富有趣味性的日期管理和时间查看方式。在Java编程环境中,Applet是一种可以在Web...
Java编写的精美时钟是一个利用Java编程语言实现的动态时钟应用,它可以嵌入到网页中,为用户提供直观且美观的时间展示。这个程序通常基于Java Applet或Java Web Start技术,使得用户无需安装额外软件就能在浏览器中...
本压缩包文件"Java_Application_Applet"包含三个核心组件的源代码:计算器、日历以及时钟,这些都是用Java语言编写的。这些源代码分别展示了如何通过Application(控制台用户界面CUI和图形用户界面GUI)以及Applet的...
在本文的漂亮时钟 Java 完整代码中,我们可以看到 `Clock` 类继承了 `java.applet.Applet` 类,以便实现时钟的交互式功能。 二、Java 图形用户界面编程 Java 图形用户界面编程是指使用 Java 语言来开发图形用户...
本项目"JAVA实现多线程时钟代码程序"旨在帮助开发者深入理解如何在Java中实现多线程以及如何利用多线程进行图形化显示,如画钟。通过这个例子,我们可以学习到以下几个重要的知识点: 1. **线程基础**:Java中的...
本程序是一个使用Java语言编写的桌面时钟Applet小程序。Applet是一种可以嵌入到网页中的小型应用程序,早期广泛应用于浏览器环境中。此程序主要实现了在桌面上显示当前时间的功能,并能够实时更新。 #### 二、关键...
在“shizhong.zip”文件中,我们期望找到的是一个包含时钟Applet源代码的Java文件,可能名为“ShiZhongApplet.java”。这个文件会定义一个扩展了`Applet`类的类,并实现上述功能。此外,可能还会有HTML文件用于展示...
"多功能时钟"是一个基于Java Applet的程序,它展示了Java编程语言在创建交互式图形用户界面方面的强大功能。Applet是一种小型Java程序,通常嵌入到HTML网页中,为用户提供动态、丰富的在线体验。这个程序可能包含了...
`ClockApplet.java`可能是一个独立的Java类,它实现了时钟的逻辑。在JSP中,我们可以通过使用`<jsp:include>`标签或者`<jsp:useBean>`标签来引用这个类。`<jsp:useBean>`可以实例化一个JavaBean,如果类名与文件名...
java applet
"漂亮时钟java完整代码.pdf" 本资源是一个使用Java编写的漂亮时钟程序,包含了声音和背景图片的加载,程序运行后可以显示一个漂亮的时钟界面。下面是该程序的知识点总结: 一、Java Applet基础知识 * 使用Java....