我給你做了一下:(第二個功能你自己加吧)
超過十載行業(yè)經(jīng)驗,技術(shù)領(lǐng)先,服務(wù)至上的經(jīng)營模式,全靠網(wǎng)絡(luò)和口碑獲得客戶,為自己降低成本,也就是為客戶降低成本。到目前業(yè)務(wù)范圍包括了:成都做網(wǎng)站、成都網(wǎng)站制作,成都網(wǎng)站推廣,成都網(wǎng)站優(yōu)化,整體網(wǎng)絡(luò)托管,成都小程序開發(fā),微信開發(fā),App定制開發(fā),同時也可以讓客戶的網(wǎng)站和網(wǎng)絡(luò)營銷和我們一樣獲得訂單和生意!
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.Date;
import java.text.*;
public class TestTimer extends JFrame implements ActionListener{
Timer timer;
JLabel display = new JLabel();
SimpleDateFormat dateFmt = new SimpleDateFormat("hh:mm:ss");
TestTimer(){
getContentPane().setLayout(new FlowLayout());
timer = new Timer(1000,this);
timer.setRepeats(true);
timer.setInitialDelay(1000);
timer.start();
getContentPane().add(display);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(200,100);
setVisible(true);
} // TestTimer
public void actionPerformed(ActionEvent e){
if(e.getSource() == timer){
display.setText(dateFmt.format(new Date()));
}
} // actionPerformed
public static void main(String[] args){
TestTimer tt = new TestTimer();
}
} // TestTimer
import java.util.*;
import java.awt.*;
import java.applet.*;
import java.text.*;
import java.awt.event.*;
public class Alarm extends Applet implements Runnable
{
Thread timer=null; //創(chuàng)建線程timer
Image gif1; //clockp:鬧鐘的外殼,鬧鈴和報時物
boolean setflag=false,stopflag=false,cancelflag=false;
Panel setpanel;
//獲取聲音文件
AudioClip ring=getAudioClip(getCodeBase(), "1.mid");
Button setbutton=new Button("SET");
Button cancelbutton=new Button("CANCEL");
Button stopbutton=new Button("STOP");
//響應(yīng)按鈕事件
private ActionListener setli=new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
setflag=true;
}
};
private ActionListener cancelli=new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
setflag=true;
}
};
private ActionListener stopli=new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ring.stop();
//清除的方法
//g.clearRect(83,280,20,30);
}
};
Label note1=new Label("Alarm clock:");
//GregorianCalendar提供的是一個日歷式的東東,上面又多了很多的參數(shù),是方便操作了不少。而Date類的功能遠不及其,求個和日期有聯(lián)系的還要自己計算。
GregorianCalendar cal=new GregorianCalendar();
GregorianCalendar cal2=new GregorianCalendar();
SimpleDateFormat df=new SimpleDateFormat("yyyy MM dd HH:mm:ss");//設(shè)置時間格式
Date dummy=new Date(); //生成Data對象
String lastdate=df.format(dummy);
Font F=new Font("TimesRoman",Font.PLAIN,14);//設(shè)置字體格式
Date dat=null;
Date timeNow;
Color fgcol=Color.blue;
Color fgcol2=Color.darkGray;
Color backcolor=Color.blue;
Label hlabel2,mlabel2,slabel2;//顯示時間單位時所用的標簽(時、分、秒)
int i;
int s,m,h;
TextField sethour,setmin,setsec;//顯示當(dāng)前時間文本框和定時文本框
//在Applet程序中,首先自動調(diào)用初始化完成必要的初始化工作,緊接著自動調(diào)用start,在進入執(zhí)行程序和返回到該頁面時被調(diào)用,而從該頁面轉(zhuǎn)到別的頁面時,stop被調(diào)用,關(guān)閉瀏覽器時,執(zhí)行destroy。
public void init()//初始化方法
{
int fieldx=50,fieldy1=120,fieldy2=220,fieldw=30,fieldh=20,space=50;//顯示時間和定時文本框的定位參數(shù)
setLayout(null); //將布局管理器初始化為null
setpanel=new Panel();
setpanel.setLayout(null);
setpanel.add(note1);
note1.setBounds(30,100,60,20);
note1.setBackground(backcolor);
note1.setForeground(Color.black);
//定時用的文本框(時、分、秒)
sethour=new TextField("00",5);
setmin=new TextField("00",5);
setsec=new TextField("00",5);
hlabel2=new Label();
mlabel2=new Label();
slabel2=new Label();
//定時的小時文本框的位置、大小
setpanel.add(sethour);
sethour.setBounds(fieldx,fieldy2,fieldw,fieldh);
sethour.setBackground(Color.white);
//在文本框后加入單位“時”
setpanel.add(hlabel2);
hlabel2.setText("h");
hlabel2.setBackground(backcolor);
hlabel2.setForeground(Color.black);
hlabel2.setBounds(fieldx+fieldw+3,fieldy2,14,20);
fieldx=fieldx+space;
//定時的分鐘文本框的位置、大小
setpanel.add(setmin);
setmin.setBounds(fieldx,fieldy2,fieldw,fieldh);
setmin.setBackground(Color.white);
//在文本框后加入單位“分”
setpanel.add(mlabel2);
mlabel2.setText("m");
mlabel2.setBackground(backcolor);
mlabel2.setForeground(Color.black);
mlabel2.setBounds(fieldx+fieldw+3,fieldy2,14,20);
fieldx=fieldx+space;
//定時的秒文本框的位置、大小
setpanel.add(setsec);
setsec.setBounds(fieldx,fieldy2,fieldw,fieldh);
setsec.setBackground(Color.white);
//在文本框后加入單位“秒”
setpanel.add(slabel2);
slabel2.setText("s");
slabel2.setBackground(backcolor);
slabel2.setForeground(Color.black);
slabel2.setBounds(fieldx+fieldw+3,fieldy2,14,20);
//設(shè)置鬧鐘控制按鈕(on,off)
setpanel.add(cancelbutton);
setpanel.add(setbutton);
setpanel.add(stopbutton);
cancelbutton.setBounds(90,180,40,20);
setbutton.setBounds(140,180,40,20);
stopbutton.setBounds(522,180,40,20);
setbutton.addActionListener(setli);
cancelbutton.addActionListener(cancelli);
stopbutton.addActionListener(stopli);
stopbutton.setVisible(false);
//將面板加入當(dāng)前容器中,并設(shè)置面板的大小和背景色
add(setpanel);
setpanel.setBounds(300,1,250,420);
setpanel.setBackground(backcolor);
/*int xcenter,ycenter,s,m,h;
//鬧鐘中心點所在位置
xcenter=145;
ycenter=162;
s=(int)cal.get(Calendar.SECOND);
m=(int)cal.get(Calendar.MINUTE);
h=(int)cal.get(Calendar.HOUR_OF_DAY);
//初始化指針位置
lastxs=(int)(Math.cos(s*3.14f/30-3.14f/2)*30+xcenter);
lastys=(int)(Math.sin(s*3.14f/30-3.14f/2)*30+ycenter);
lastxm=(int)(Math.cos(m*3.14f/30-3.14f/2)*25+xcenter);
lastym=(int)(Math.sin(m*3.14f/30-3.14f/2)*25+ycenter);
lastxh=(int)(Math.cos((h*30+m/2)*3.14f/180-3.14f/2)*18+xcenter);
lastyh=(int)(Math.sin((h*30+m/2)*3.14f/180-3.14f/2)*18+ycenter);
lasts=s; */
MediaTracker mt=new MediaTracker(this);//為給定組件創(chuàng)建一個跟蹤媒體的MediaTracker對象,把圖片添加到被跟蹤的圖片組
//Java允?Sapplet??HTML所在的位置(decument base)下?d?Y料,也允?Sapplet?鈉涑淌醬a所在的位置(code base)下?d?Y料。藉由呼叫g(shù)etDocumentBase()?cgotCodeBase()可得到URL物件。?@些函?????湍閼業(yè)僥閬胂螺d的?n案的位置
//clockp=getImage(getDocumentBase(),"11.png");
gif1=getImage(getCodeBase(),"2.gif");
//i為id號
mt.addImage(gif1,i++);
try
{
mt.waitForAll();
}
catch(InterruptedException e)
{};//等待加載結(jié)束
resize(600,420);//設(shè)置窗口大小
}
//窗口顯示有改變的時候調(diào)用paint
public void paint(Graphics g)
{//重寫paint()方法
int xh,yh,xm,ym,xs,ys,strike_times;
int xcenter,ycenter;
String today;
xcenter=148;
ycenter=186;
dat=new Date();
//用當(dāng)前時間初始化日歷時間
cal.setTime(dat);
//讀取當(dāng)前時間
s=(int)cal.get(Calendar.SECOND);
m=(int)cal.get(Calendar.MINUTE);
h=(int)cal.get(Calendar.HOUR_OF_DAY);
//換一種時間表達形式
today=df.format(dat);
//指針位置
xs=(int)(Math.cos(s*3.14f/30-3.14f/2)*30+xcenter);
ys=(int)(Math.sin(s*3.14f/30-3.14f/2)*30+ycenter);
xm=(int)(Math.cos(m*3.14f/30-3.14f/2)*25+xcenter);
ym=(int)(Math.sin(m*3.14f/30-3.14f/2)*25+ycenter);
xh=(int)(Math.cos((h*30+m/2)*3.14f/180-3.14f/2)*12+xcenter);
yh=(int)(Math.sin((h*30+m/2)*3.14f/180-3.14f/2)*12+ycenter);
//設(shè)置字體和顏色
g.setFont(F);
//前景色
g.setColor(getBackground()); //取背景色的
g.drawImage(gif1,75,110,this);
//以數(shù)字方式顯示年、月、日和時間
g.drawString(today,55,415);
//畫指針
g.drawLine(xcenter,ycenter,xs,ys);
g.drawLine(xcenter,ycenter-1,xm,ym); //(x1,y1,x2,y2)
g.drawLine(xcenter-1,ycenter,xm,ym);
g.drawLine(xcenter,ycenter-1,xh,yh);
g.drawLine(xcenter-1,ycenter,xh,yh);
int timedelta;//記錄當(dāng)前時間與鬧鈴定時的時差
Integer currh,currm,currs;//分別記錄當(dāng)前的時、分、秒
Date dat2=new Date();
cal2.setTime(dat2);
//讀取當(dāng)前時間
currh=(int)cal2.get(Calendar.SECOND);
currm=(int)cal2.get(Calendar.MINUTE);
currs=(int)cal2.get(Calendar.HOUR_OF_DAY);
//這樣做的話說我API已過時
//timeNow=new Date();
//currh=new Integer(timeNow.getHours());
//currm=new Integer(timeNow.getMinutes());
//currs=new Integer(timeNow.getSeconds());
if(setflag)
{ //判斷是否設(shè)置了鬧鐘
//判斷當(dāng)前時間是否為鬧鐘所定的時間
if((currh.intValue()==Integer.valueOf(sethour.getText()).intValue())(currm.intValue()==Integer.valueOf(setmin.getText()).intValue())(currs.intValue()==Integer.valueOf(setsec.getText()).intValue()))
{
ring.play();
g.drawImage(gif1,83,280,this);
stopbutton.setVisible(true);
}
timedelta=currm.intValue()*60+currs.intValue()-Integer.valueOf(setmin.getText()).intValue()*60-Integer.valueOf(setsec.getText()).intValue();
if((timedelta=30))
{
//若當(dāng)前時間與鬧鐘相差時間超過30秒,鬧鐘自動停
ring.stop();
//清除的方法
g.clearRect(83,280,20,30);
}
}
dat=null;
}
public void start()
{
if(timer==null)
{
timer=new Thread(this);//將timer實例化
timer.start();
}
}
public void stop()
{
timer=null;
}
//給創(chuàng)建線程后start之后自動執(zhí)行的函數(shù)
public void run()
{
//在run()方法中,調(diào)用repaint()方法,以重繪小程序區(qū),進行時鐘顯示的更新。接著調(diào)用sleep方法讓當(dāng)前線程(也就是我們創(chuàng)建的線程clockthread)睡眠1000毫秒,因為我們每秒鐘要更新一下顯示,所以讓它睡眠1秒
while(timer!=null)
{
try
{
timer.sleep(1000);
}
catch(InterruptedException e)
{}
//調(diào)用repaint時,會首先清除掉paint方法之前的畫的內(nèi)容,再調(diào)用paint方法
repaint();//刷新畫面
}
timer=null;
}
//當(dāng)AWT接收到一個applet的重繪請求時,它就調(diào)用applet的 update(),默認地,update() 清除applet的背景,然后調(diào)用 paint()。重載 update(),將以前在paint()中的繪圖代碼包含在update()中,從而避免每次重繪時將整個區(qū)域清除
//有兩種方法可以明顯地減弱閃爍:重載 update()或使用雙緩沖。
//使用雙緩沖技術(shù):另一種減小幀之間閃爍的方法是使用雙緩沖,它在許多動畫Applet中被使用。其主要原理是創(chuàng)建一個后臺圖像,將需要繪制的一幀畫入圖像,然后調(diào)用DrawImage()將整個圖像一次畫到屏幕上去;好處是大部分繪制是離屏的,將離屏圖像一次繪至屏幕上比直接在屏幕上繪制要有效得多,大大提高做圖的性能。
// 雙緩沖可以使動畫平滑,但有一個缺點,要分配一張后臺圖像,如果圖像相當(dāng)大,這將需要很大一塊內(nèi)存;當(dāng)你使用雙緩沖技術(shù)時,應(yīng)重載 update()。
public void update(Graphics g)
{
Image offscreen_buf=null;
//采用雙緩沖技術(shù)的update()方法
if(offscreen_buf==null)
offscreen_buf=createImage(600,420);
Graphics offg=offscreen_buf.getGraphics();
offg.clipRect(1,1,599,419);
paint(offg);
Graphics ong=getGraphics();
ong.clipRect(1,1,599,419);
ong.drawImage(offscreen_buf,0,0,this);
}
/** Creates a new instance of AlarmClock */
}
收藏的一個小程序。
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JLabel;
public class TimerApplet extends JApplet implements ActionListener{
private JLabel lblTime=new JLabel("時間");
private JButton btnStart=new JButton("開始");
private JButton btnEnd=new JButton("結(jié)束");
private long startTime=System.currentTimeMillis();
private boolean isRun=false;
private NumberFormat numberFormat=new DecimalFormat("0.000");
public TimerApplet(){
this.setLayout(new FlowLayout());
this.add(lblTime);
this.add(btnStart);
this.add(btnEnd);
btnStart.addActionListener(this);
btnEnd.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
if(e.getSource()==btnStart){
class TimerThread implements Runnable{
public void run() {
isRun=true;
startTime=System.currentTimeMillis();
while(isRun){
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
double time=(System.currentTimeMillis()-startTime);
lblTime.setText(numberFormat.format(time/1000));
}
}
}
new Thread(new TimerThread()).start();
}
if(e.getSource()==btnEnd){
isRun=false;
}
}
}
import?java.awt.*;
import?java.awt.event.*;
import?javax.swing.*;
import?sun.util.calendar.Gregorian;
import?java.util.Calendar;
import?java.util.GregorianCalendar;
public?class?ClockPointer?extends?JFrame{
int?x,?y,?x0,?y0,?r,?h,?olds_x,?olds_y,?oldm_x,?oldm_y,?oldh_x,?oldh_y,?
ss,mm,?hh,?old_m,?old_h,?ang;
final?double?RAD?=?Math.PI/180;
public?ClockPointer(){
super("Java時鐘");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Image?image?=?getToolkit().getImage("clock.gif");
setIconImage(image);
setSize(400,400);
setBackground(Color.white);
//setLocation(300,150);
this.setLocationRelativeTo(null);
setResizable(true);
int?delay?=?1000;
//創(chuàng)建一個監(jiān)聽事件
setVisible(true);
ActionListener?drawClock?=?new?ActionListener(){
public?void?actionPerformed(ActionEvent?evt){
repaint();
}
};
//創(chuàng)建一個時間計數(shù)器,每一秒觸發(fā)一次
new?Timer(delay,?drawClock).start();
}
java.text.SimpleDateFormat?fmTime?=?new?java.text.SimpleDateFormat("HH:mm:ss");
//繪制圖形
public?void?paint(Graphics?g){
super.paint(g);
g.setFont(null);
Graphics2D?g2D?=?(Graphics2D)g;
Insets?insets?=?getInsets();
int?L?=?insets.left/2,?T?=?insets.top/2;
h?=?getSize().height;
g.setColor(Color.white);
//畫圓
g2D.setStroke(new?BasicStroke(2.0f));
g.setColor(Color.gray);
g.drawOval(L+40,?T+40,?h-80,?h-80);
r?=?h/2?-?40;
x0?=?40?+?r?-?5?+?L;
y0?=?40?+?r?-?5?-?T;
ang?=?60;
//繪制時鐘上的12個字
for(int?i?=?1;i?=?12;i?++){
x?=?(int)((r+10)*Math.cos(RAD*ang)+x0);
y?=?(int)((r+10)*Math.sin(RAD*ang)+y0);
g.setColor(Color.black);
g.drawString(""+i,?x,?h-y);
ang?-=30;
}
//獲得現(xiàn)在的時間
Calendar?now?=?new?GregorianCalendar();
int?nowh?=?now.get(Calendar.HOUR_OF_DAY);
int?nowm?=?now.get(Calendar.MINUTE);
int?nows?=?now.get(Calendar.SECOND);
String?st=fmTime.format(now.getTime());
//在窗體上顯示時間
g.setColor(Color.pink);
g.fillRect(L,?T,?50,?28);
g.setColor(Color.blue);
g.drawString(st,L+2,T+26);
//計算時間與度數(shù)的關(guān)系
ss?=?90?-?nows*6;
mm?=?90?-?nowm*6;
hh?=?90?-?nowh*30?-?nowm/2;
x0?=?r+40+L;
y0?=?r+40+T;
g2D.setStroke(new?BasicStroke(1.2f));
//擦除秒針
//if(olds_x??0){
//????g.setColor(getBackground());
//????//?g.setColor(Color.gray);
//????g.drawLine(x0,?y0,?olds_x,?h-olds_y);?//?(?)
//}
//繪制秒針
x?=?(int)(r*0.9*Math.cos(RAD*ss))+x0;
y?=?(int)(r*0.9*Math.sin(RAD*ss))+y0-2*T;
g.setColor(Color.yellow);
g.drawLine(x0,?y0,?x,?h-y);
olds_x?=?x;
olds_y?=?y;
g2D.setStroke(new?BasicStroke(2.2f));
//擦除分針
//if(old_m!=mm){
//????g.setColor(getBackground());
//????g.drawLine(x0,y0,oldm_x,h-oldm_y);
//}
//繪制分針
x?=?(int)(r*0.7*Math.cos(RAD*mm))+x0;
y?=?(int)(r*0.7*Math.sin(RAD*mm))+y0-2*T;
g.setColor(Color.green);
g.drawLine(x0,y0,x,h-y);
oldm_x?=?x;
oldm_y?=?y;
old_m?=?mm;
g2D.setStroke(new?BasicStroke(3.2f));
//擦除時針
//if(old_h!=hh){
//????g.setColor(getBackground());
//????g.drawLine(x0,y0,oldh_x,h-oldh_y);
//}
//繪制時針
x?=?(int)(r*0.5*Math.cos(RAD*hh))+x0;
y?=?(int)(r*0.5*Math.sin(RAD*hh))+y0-2*T;
g.setColor(Color.red);
g.drawLine(x0,y0,x,h-y);
oldh_x?=?x;
oldh_y?=?y;
old_h?=?hh;
}
public?static?void?main(String[]?args){
new?ClockPointer();
}
}
//整理一下