最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JavaFX實現(xiàn)簡易時鐘效果(二)

 更新時間:2020年11月15日 11:19:36   作者:酸甜梅子  
這篇文章主要為大家詳細介紹了JavaFX實現(xiàn)簡易時鐘效果的第二篇,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了JavaFX實現(xiàn)簡易時鐘效果的具體代碼,供大家參考,具體內(nèi)容如下

在前一篇博客中,我們已經(jīng)繪制了一個靜止時鐘。

繪制簡易時鐘(一)

首先進行一個微調(diào):讓表盤根據(jù)窗口大小自動調(diào)整大小:

在 ShowClock.start() 中,添加對面板長寬的監(jiān)聽。

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 實現(xiàn)動態(tài)鐘表

在 ShowClock 類中添加:

//設(shè)置事件處理對象
EventHandler<ActionEvent> eventHandler = e -> {
   clock.setCurrentTime();
  };
//每秒結(jié)束后觸發(fā)eventHandler
Timeline animation = new Timeline(
    new KeyFrame(Duration.millis(1000), eventHandler));
  animation.setCycleCount(Timeline.INDEFINITE); //無限循環(huán)
  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();

  //設(shè)置事件處理對象
  EventHandler<ActionEvent> eventHandler = e -> {
   clock.setCurrentTime();
  };
  //每秒結(jié)束后觸發(fā)eventHandler
  Timeline animation = new Timeline(
    new KeyFrame(Duration.millis(1000), eventHandler));
  animation.setCycleCount(Timeline.INDEFINITE); //無限循環(huán)
  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);
 }
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Java 開啟多線程常見的4種方法

    Java 開啟多線程常見的4種方法

    本文主要介紹了Java 開啟多線程常見的4種方法,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-06-06
  • springboot1.X和2.X中如何解決Bean名字相同時覆蓋

    springboot1.X和2.X中如何解決Bean名字相同時覆蓋

    這篇文章主要介紹了springboot1.X和2.X中如何解決Bean名字相同時覆蓋,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-03-03
  • 如何使用Bean Validation 解決業(yè)務(wù)中參數(shù)校驗

    如何使用Bean Validation 解決業(yè)務(wù)中參數(shù)校驗

    這篇文章主要介紹了如何使用Bean Validation 解決業(yè)務(wù)中參數(shù)校驗操作,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-07-07
  • Springmvc ResponseBody響應(yīng)json數(shù)據(jù)實現(xiàn)過程

    Springmvc ResponseBody響應(yīng)json數(shù)據(jù)實現(xiàn)過程

    這篇文章主要介紹了Springmvc ResponseBody響應(yīng)json數(shù)據(jù)實現(xiàn)過程,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2020-10-10
  • JAVA字符串占位符使用方法實例

    JAVA字符串占位符使用方法實例

    今天同事又問起類似符串占位符使用的功能,所以下面這篇文章主要給大家介紹了關(guān)于JAVA字符串占位符使用的相關(guān)資料,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下
    2022-11-11
  • 一文帶你搞懂SpringBoot中自動裝配原理

    一文帶你搞懂SpringBoot中自動裝配原理

    這篇文章主要為大家詳細介紹了SpringBoot中自動裝配原理的相關(guān)知識,文中的示例代碼講解詳細,具有一定的借鑒價值,有需要的小伙伴可以參考下
    2025-01-01
  • Java1.7全網(wǎng)最深入HashMap源碼解析

    Java1.7全網(wǎng)最深入HashMap源碼解析

    HashMap 是一個散列表,它存儲的內(nèi)容是鍵值對(key-value)映射。HashMap 實現(xiàn)了 Map 接口,根據(jù)鍵的 HashCode 值存儲數(shù)據(jù),具有很快的訪問速度,最多允許一條記錄的鍵為 nul
    2021-11-11
  • java jni調(diào)用c函數(shù)實例分享(java調(diào)用c函數(shù))

    java jni調(diào)用c函數(shù)實例分享(java調(diào)用c函數(shù))

    Java代碼中調(diào)用C/C++代碼,當(dāng)然是使用JNI,JNI是Java native interface的簡寫,可以譯作Java原生接口,下面看實例吧
    2013-12-12
  • springboot斷點上傳、續(xù)傳、秒傳實現(xiàn)方式

    springboot斷點上傳、續(xù)傳、秒傳實現(xiàn)方式

    這篇文章主要介紹了springboot斷點上傳、續(xù)傳、秒傳實現(xiàn)方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-07-07
  • Java實現(xiàn)發(fā)紅包功能

    Java實現(xiàn)發(fā)紅包功能

    這篇文章主要為大家詳細介紹了Java實現(xiàn)發(fā)紅包功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-11-11

最新評論

万州区| 咸丰县| 孟村| 桓仁| 正蓝旗| 蕉岭县| 吉安市| 陆河县| 蒙自县| 北海市| 泾川县| 明水县| 河津市| 商都县| 滦南县| 曲水县| 江门市| 稻城县| 临武县| 汉阴县| 汉寿县| 西乌珠穆沁旗| 浠水县| 丘北县| 富平县| 鲁甸县| 恩施市| 乌拉特后旗| 阿拉善盟| 鄂伦春自治旗| 徐水县| 霍城县| 墨玉县| 甘泉县| 奉贤区| 天柱县| 富锦市| 临高县| 鹿泉市| 福鼎市| 仁寿县|