JavaFX实现简易时钟效果(二)

 更新时间:2020年11月15日 11:19:36   作者:酸甜梅子  
这篇文章主要为大家详细介绍了JavaFX实现简易时钟效果的第二篇,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了JavaFX实现简易时钟效果的具体代码,供大家参考,具体内容如下

在前一篇博客中,我们已经绘制了一个静止时钟。

绘制简易时钟(一)

首先进行一个微调:让表盘根据窗口大小自动调整大小:

在 ShowClock.start() 中,添加对面板长宽的监听。

pane.widthProperty().addListener(ov -> clock.setW(pane.getWidth()));
pane.heightProperty().addListener(ov -> clock.setH(pane.getHeight()));

添加对时间和钟表大小的更改方法

在 ClockPane 类中添加:

/** Construct a clock with specified hour, minute, and second */
 public ClockPane(int hour, int minute, int second) {
  this.hour = hour;
  this.minute = minute;
  this.second = second;
  paintClock();
 }

 /** Set a new hour */
 public void setHour(int hour) {
  this.hour = hour;
  paintClock();
 }

 /** Set a new minute */
 public void setMinute(int minute) {
  this.minute = minute;
  paintClock();
 }

 /** Set a new second */
 public void setSecond(int second) {
  this.second = second;
  paintClock();
 }

 /** Return clock pane's width */
 public double getW() {
  return w;
 }

 /** Set clock pane's width */
 public void setW(double w) {
  this.w = w;
  paintClock();
 }

 /** Return clock pane's height */
 public double getH() {
  return h;
 }

 /** Set clock pane's height */
 public void setH(double h) {
  this.h = h;
  paintClock();
 }

用 Timeline 实现动态钟表

在 ShowClock 类中添加:

//设置事件处理对象
EventHandler<ActionEvent> eventHandler = e -> {
   clock.setCurrentTime();
  };
//每秒结束后触发eventHandler
Timeline animation = new Timeline(
    new KeyFrame(Duration.millis(1000), eventHandler));
  animation.setCycleCount(Timeline.INDEFINITE); //无限循环
  animation.play(); //开始动画

就可以让时钟动起来了。

完整代码

ShowClock.java

package primier;

import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.util.Duration;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;

public class ShowClock extends Application {
 @Override //Override the start method in the Application class
 public void start(Stage primaryStage) {
  ClockPane clock = new ClockPane();

  //设置事件处理对象
  EventHandler<ActionEvent> eventHandler = e -> {
   clock.setCurrentTime();
  };
  //每秒结束后触发eventHandler
  Timeline animation = new Timeline(
    new KeyFrame(Duration.millis(1000), eventHandler));
  animation.setCycleCount(Timeline.INDEFINITE); //无限循环
  animation.play(); //开始动画

  BorderPane pane = new BorderPane();
  pane.setCenter(clock);
  Scene scene = new Scene(pane, 250,250);
  primaryStage.setTitle("Display Clock");
  primaryStage.setScene(scene);
  primaryStage.show();

  pane.widthProperty().addListener(ov ->
    clock.setW(pane.getWidth()));
  pane.heightProperty().addListener(ov ->
    clock.setH(pane.getHeight()));
 }

 public static void main (String[] args) { Application.launch(args); }
}

ClockPane.java

package primier;

import java.util.Calendar;
import java.util.GregorianCalendar;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Line;
import javafx.scene.text.Text;

public class ClockPane extends Pane {
 private int hour;
 private int minute;
 private int second;

 // Clock pane's width and height
 private double w = 250, h = 250;

 /** Construct a default clock with the current time*/
 public ClockPane() {
  setCurrentTime();
 }

 /** Construct a clock with specified hour, minute, and second */
 public ClockPane(int hour, int minute, int second) {
  this.hour = hour;
  this.minute = minute;
  this.second = second;
  paintClock();
 }

 /** Return hour */
 public int getHour() {
  return hour;
 }

 /** Set a new hour */
 public void setHour(int hour) {
  this.hour = hour;
  paintClock();
 }

 /** Return minute */
 public int getMinute() {
  return minute;
 }

 /** Set a new minute */
 public void setMinute(int minute) {
  this.minute = minute;
  paintClock();
 }

 /** Return second */
 public int getSecond() {
  return second;
 }

 /** Set a new second */
 public void setSecond(int second) {
  this.second = second;
  paintClock();
 }

 /** Return clock pane's width */
 public double getW() {
  return w;
 }

 /** Set clock pane's width */
 public void setW(double w) {
  this.w = w;
  paintClock();
 }

 /** Return clock pane's height */
 public double getH() {
  return h;
 }

 /** Set clock pane's height */
 public void setH(double h) {
  this.h = h;
  paintClock();
 }

 /** Set the current time for the clock */
 public void setCurrentTime() {
  //Construct a calendar for the current date and time
  Calendar calendar = new GregorianCalendar();
  //Set current hour, minute and second
  this.hour = calendar.get(Calendar.HOUR_OF_DAY);
  this.minute = calendar.get(Calendar.MINUTE);
  this.second = calendar.get(Calendar.SECOND);
  paintClock();
 }

 /** Paint the clock */
 protected void paintClock() {
  // Initialize clock parameters
  double clockRadius = Math.min(w,h)*0.8*0.5;
  double centerX = w/2;
  double centerY = h/2;

  // Draw circle
  Circle circle = new Circle(centerX, centerY, clockRadius);
  circle.setFill(Color.WHITE);
  circle.setStroke(Color.BLACK);
  Text t1 = new Text(centerX-5, centerY-clockRadius+12,"12");
  Text t2 = new Text(centerX-clockRadius+3, centerY +5, "9");
  Text t3 = new Text(centerX+clockRadius-10, centerY+3, "3");
  Text t4 = new Text(centerX-3, centerY+clockRadius-3,"6");

  // Draw second hand
  double sLength = clockRadius * 0.8;
  double secondX = centerX + sLength * Math.sin(second * (2 * Math.PI / 60));
  double secondY = centerY - sLength * Math.cos(second * (2 * Math.PI / 60));
  Line sLine = new Line(centerX, centerY, secondX, secondY);
  sLine.setStroke(Color.GRAY);

  // Draw minute hand
  double mLength = clockRadius * 0.65;
  double minuteX = centerX + mLength * Math.sin(minute * (2 * Math.PI / 60));
  double minuteY = centerY - mLength * Math.cos(minute * (2 * Math.PI / 60));
  Line mLine = new Line(centerX, centerY, minuteX, minuteY);
  mLine.setStroke(Color.BLUE);

  // Draw hour hand
  double hLength = clockRadius * 0.5;
  double hourX = centerX + hLength *
    Math.sin((hour % 12 + minute / 60.0) * (2 * Math.PI / 12));
  double hourY = centerY - hLength *
    Math.cos((hour % 12 + minute / 60.0) * (2 * Math.PI / 12));
  Line hLine = new Line(centerX, centerY, hourX, hourY);
  sLine.setStroke(Color.GREEN);

  getChildren().clear();
  getChildren().addAll(circle, t1, t2, t3, t4, sLine, mLine, hLine);
 }
}

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

相关文章

  • Maven 继承父工程时的relativePath标签详细解析

    Maven 继承父工程时的relativePath标签详细解析

    这篇文章主要介绍了Maven 继承父工程时的relativePath标签解析,通过本文学习你需要注意子模块想要用父模块pom中的版本,请注意配置relativePath属性,需要的朋友可以参考下
    2022-12-12
  • MyBatis延迟加载实现步骤详解

    MyBatis延迟加载实现步骤详解

    这篇文章主要介绍了MyBatis延迟加载实现步骤详解,​ MyBatis中的延迟加载,也成为懒加载,是指在进行关联查询时,按照设置的延迟规则推迟对关联对象的查询,延迟加载可以有效的减少数据库的压力,需要的朋友可以参考下
    2023-10-10
  • Data Source与数据库连接池简介(JDBC简介)

    Data Source与数据库连接池简介(JDBC简介)

    DataSource是作为DriverManager的替代品而推出的,DataSource 对象是获取连接的首选方法,这篇文章主要介绍了Data Source与数据库连接池简介(JDBC简介),需要的朋友可以参考下
    2022-11-11
  • 一文搞懂Java桥接方法

    一文搞懂Java桥接方法

    这篇文章主要介绍了Java中的桥接方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-07-07
  • MyBatis如何使用PageHelper实现分页查询

    MyBatis如何使用PageHelper实现分页查询

    这篇文章主要介绍了MyBatis如何使用PageHelper实现分页查询,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-11-11
  • java多线程有序读取同一个文件

    java多线程有序读取同一个文件

    这篇文章主要为大家详细介绍了java多线程有序读取同一个文件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-08-08
  • Java中的vector类使用示例小结

    Java中的vector类使用示例小结

    Vector与ArrayList的实现基本相似,同样是基于动态数组,同样是需要扩容,下面举了三个简短的例子来帮助大家理解vertor:
    2016-05-05
  • SpringBoot 项目使用hutool 工具进行 http 接口调用的处理方法

    SpringBoot 项目使用hutool 工具进行 http 接口调用的处理方

    在实际的开发过程中一个互联网的项目来说 ,有可能会涉及到调用外部接口的实际业务场景,下面通过本文给大家介绍SpringBoot 项目 使用hutool 工具进行 http 接口调用的处理方法,需要的朋友可以参考下
    2022-06-06
  • Springboot mybatis常见配置问题解决

    Springboot mybatis常见配置问题解决

    这篇文章主要介绍了Springboot mybatis常见配置问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2019-11-11
  • 在IDEA中搭建最小可用SpringMVC项目(纯Java配置)

    在IDEA中搭建最小可用SpringMVC项目(纯Java配置)

    这篇文章主要介绍了在IDEA中搭建最小可用SpringMVC项目(纯Java配置),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-12-12

最新评论