Java实现动态模拟时钟

所属分类: 软件编程 / java 阅读数: 70
收藏 0 赞 0 分享

本文实例为大家分享了java动态模拟时钟的具体代码,供大家参考,具体内容如下

应用名称:java动态模拟时钟

用到的知识:javaGUI,java 绘图

开发环境:win10+eclipse+jdk1.8

功能说明:通过java绘图画出一个虚拟的动态时钟

效果图:

源代码:

import javax.swing.*;
import java.awt.*;
import java.util.*;
import java.lang.Thread;
import java.text.DecimalFormat;
 
public class StillClock extends JPanel {
 
 /**
  * @param args
  */
 private int hour;
 private int minute;
 private int second;
  
 //构造函数
 public StillClock() {
  setCurrentTime();
 }
 
 //返回小时
 public int getHour() {
  return hour;
 }
  
  
 public int getMinute() {
  return minute;
 }
  
  
  
 public int getSecond() {
  return second;
 }
  
  
 //绘制时钟
 protected void paintComponent(Graphics g) {
   
  super.paintComponent(g);
  //初始化
  int clockRadius = (int)(Math.min(getWidth(), getHeight()) * 0.8 * 0.5);
  int xCenter = getWidth() / 2;
  int yCenter = getHeight() / 2;
  //画圆
  g.setColor(Color.black);
  g.drawOval(xCenter - clockRadius, yCenter - clockRadius, 2 * clockRadius, 2 * clockRadius);
  g.drawString("12", xCenter - 5, yCenter - clockRadius + 15);
  g.drawString("9", xCenter - clockRadius + 3, yCenter + 5);
  g.drawString("3", xCenter + clockRadius - 10, yCenter + 3);
  g.drawString("6", xCenter - 3, yCenter + clockRadius - 3);
  //画秒针
  int sLength = (int)(clockRadius * 0.8);
  int xSecond = (int)(xCenter + sLength * Math.sin(second * (2 * Math.PI / 60)));
  int ySecond = (int)(yCenter - sLength * Math.cos(second * (2 * Math.PI / 60)));
   
  g.setColor(Color.red);
  g.drawLine(xCenter, yCenter, xSecond, ySecond);
   
  //画分针
  int mLenth = (int)(clockRadius * 0.65);
  int xMinute = (int)(xCenter + mLenth * Math.sin(minute * (2 * Math.PI / 60)));
  int yMinute = (int)(xCenter - mLenth * Math.cos(minute * (2 * Math.PI / 60)));
  g.setColor(Color.blue);
  g.drawLine(xCenter, yCenter, xMinute, yMinute);
   
  //画时针
  int hLength = (int)(clockRadius * 0.5);
  int xHour = (int)(xCenter + hLength * Math.sin((hour % 12 + minute / 60.0) * (2 * Math.PI / 12)));
  int yHour = (int)(yCenter - hLength * Math.cos((hour % 12 + minute / 60.0) * (2 * Math.PI / 12)));
  g.setColor(Color.green);
  g.drawLine(xCenter, yCenter, xHour, yHour);
   
  //画数字时钟
  g.setColor(Color.black);
  DecimalFormat s=new DecimalFormat("00");
  g.drawString(s.format(getHour()) + ":" + s.format(getMinute()) + ":" + s.format(getSecond()), xCenter - 22, yCenter - clockRadius - 15);
   
 }
  
 public void setCurrentTime() {
  Calendar calendar = new GregorianCalendar();
   
  this.hour = calendar.get(Calendar.HOUR_OF_DAY);
  this.minute = calendar.get(Calendar.MINUTE);
  this.second = calendar.get(Calendar.SECOND);
 }
  
  
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  JFrame frame = new JFrame("DiaplayClock");
    frame.setResizable(false);
  frame.setTitle("DiaplayClock");
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  frame.setSize(300,350);
  frame.setVisible(true);
   
  while(true) {
   StillClock clock = new StillClock();
   frame.getContentPane().add(clock);
   clock.setVisible(true);
   frame.validate();
   try {
    Thread.sleep(1000);
     
   }
   catch (InterruptedException e) {
    e.printStackTrace(); 
   }
   clock.setVisible(false);
   frame.remove(clock);
   clock = null;
   frame.validate();
    
  }
 
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

Java实现一个简单的文件上传案例示例代码

这篇文章主要介绍了Java实现一个简单的文件上传案例,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

详解在spring中使用JdbcTemplate操作数据库的几种方式

这篇文章主要介绍了详解在spring中使用JdbcTemplate操作数据库的几种方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

java中的switch case语句使用详解

这篇文章主要介绍了java中的switch case语句使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

深入理解Java 线程池

这篇文章主要介绍了Java 线程池的相关资料,文中讲解非常细致,帮助大家更好的理解和学习,感兴趣的朋友可以了解下
收藏 0 赞 0 分享

详解mybatis #{}和${}的区别、传参、基本语法

这篇文章主要介绍了mybatis #{}和${}的区别、传参、基本语法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

MyBatis 中 ${}和 #{}的正确使用方法(千万不要乱用)

这篇文章主要介绍了MyBatis 中 ${}和 #{}的正确使用方法,本文给大家提到了MyBatis 中 ${}和 #{}的区别,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

详解Mybatis中的 ${} 和 #{}区别与用法

这篇文章主要介绍了Mybatis中的 ${} 和 #{}区别与用法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Maven安装过程图文详解

这篇文章主要介绍了Maven安装过程,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧
收藏 0 赞 0 分享

SpringBoot登录拦截配置详解(实测可用)

这篇文章主要介绍了SpringBoot登录拦截配置详解(实测可用),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

JAVA 内存溢出案例汇总

这篇文章主要介绍了JAVA 内存溢出案例的汇总,文中讲解非常细致,帮助各位工作学习时避免内存溢出,感兴趣的朋友可以了解下
收藏 0 赞 0 分享
查看更多