JavaFX實(shí)現(xiàn)簡易時鐘效果(一)
本文實(shí)例為大家分享了JavaFX實(shí)現(xiàn)簡易時鐘效果的具體代碼,供大家參考,具體內(nèi)容如下
效果圖
用當(dāng)前時間創(chuàng)建時鐘,繪制表盤。
鐘表是靜止的。讓指針動起來,請參照:繪制簡易時鐘(二)

主函數(shù)文件 ShowClock:
package primier;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.scene.paint.Color;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.shape.Line;
public class ShowClock extends Application {
@Override //Override the start method in the Application class
public void start(Stage primaryStage) {
// 創(chuàng)建時鐘面板
ClockPane clock = new ClockPane();
// 當(dāng)前時間整理為字符串
String timeString = clock.getHour() + ":" + clock.getMinute()
+ ":" + clock.getSecond();
Label lbCurrentTime = new Label(timeString);
BorderPane pane = new BorderPane();
pane.setCenter(clock);
pane.setBottom(lbCurrentTime);
// 將時鐘字符串設(shè)為靠上居中
BorderPane.setAlignment(lbCurrentTime, Pos.TOP_CENTER);
Scene scene = new Scene(pane, 250,250);
primaryStage.setTitle("Display Clock");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main (String[] args) {
Application.launch(args);
}
}
ClockPane 類
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;
// 時鐘面板的寬度和高度
private double w = 250, h = 250;
/** 用當(dāng)前時間創(chuàng)建時鐘 */
public ClockPane() {
setCurrentTime();
}
/** Return hour */
public int getHour() { return hour; }
/** Return minute */
public int getMinute() { return minute; }
/** Return second */
public int getSecond() { return second; }
/** Set the current time for the clock */
public void setCurrentTime() {
// 用當(dāng)前時間創(chuàng)建Calendar類
Calendar calendar = new GregorianCalendar();
this.hour = calendar.get(Calendar.HOUR_OF_DAY);
this.minute = calendar.get(Calendar.MINUTE);
this.second = calendar.get(Calendar.SECOND);
paintClock();
}
/** 繪制時鐘 */
protected void paintClock() {
double clockRadius = Math.min(w,h)*0.4; // 時鐘半徑
// 時鐘中心x, y坐標(biāo)
double centerX = w/2;
double centerY = h/2;
// 繪制鐘表
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");
// 秒針
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);
// 分針
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);
// 時針
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);
// 將之前的結(jié)點(diǎn)清空,繪制新創(chuàng)建的結(jié)點(diǎn)
getChildren().clear();
getChildren().addAll(circle, t1, t2, t3, t4, sLine, mLine, hLine);
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- java實(shí)現(xiàn)動態(tài)時鐘并設(shè)置鬧鐘功能
- Java實(shí)現(xiàn)的簡單數(shù)字時鐘功能示例
- java多線程編程制作電子時鐘
- java實(shí)現(xiàn)的小時鐘示例分享
- Java編程小實(shí)例—數(shù)字時鐘的實(shí)現(xiàn)代碼示例
- Java實(shí)現(xiàn)的動態(tài)數(shù)字時鐘功能示例【顯示世界時間】
- java實(shí)現(xiàn)時鐘效果
- Java實(shí)現(xiàn)動態(tài)模擬時鐘
- Java實(shí)現(xiàn)動態(tài)數(shù)字時鐘
- java實(shí)現(xiàn)時鐘表盤
相關(guān)文章
SpringBoot項目中@Test不出現(xiàn)可點(diǎn)擊運(yùn)行的按鈕問題
這篇文章主要介紹了SpringBoot項目中@Test不出現(xiàn)可點(diǎn)擊運(yùn)行的按鈕問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-01-01
Java讀取Properties文件的七種方法的總結(jié)
這篇文章主要介紹了Java讀取Properties文件的七種方法的總結(jié)的相關(guān)資料,需要的朋友可以參考下2017-07-07
springboot實(shí)現(xiàn)修改請求狀態(tài)404改為200
這篇文章主要介紹了springboot實(shí)現(xiàn)修改請求狀態(tài)404改為200方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-07-07
java 使用簡單的demo實(shí)例告訴你優(yōu)化算法的強(qiáng)大
本篇文章介紹了,在java中使用簡單的demo實(shí)例告訴你優(yōu)化算法的強(qiáng)大。需要的朋友參考下2013-05-05
關(guān)于SpringBoot集成Lettuce連接Redis的方法和案例
這篇文章主要介紹了關(guān)于SpringBoot集成Lettuce連接Redis的方法和案例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-04-04
SpringBoot如何配置Controller實(shí)現(xiàn)Web請求處理
這篇文章主要介紹了SpringBoot如何配置Controller實(shí)現(xiàn)Web請求處理,文中通過圖解示例介紹的很詳細(xì),具有有一定的參考價值,需要的小伙伴可以參考一下2023-05-05
Java使用Math.random()結(jié)合蒙特卡洛方法計算pi值示例
這篇文章主要介紹了Java使用Math.random()結(jié)合蒙特卡洛方法計算pi值的方法,簡單說明了結(jié)合具體實(shí)例蒙特卡洛方法的原理,并結(jié)合具體實(shí)例形式分析了java使用蒙特卡洛方法計算PI值的操作技巧,需要的朋友可以參考下2017-09-09
SpringCloud集成Sleuth和Zipkin的思路講解
Zipkin 是 Twitter 的一個開源項目,它基于 Google Dapper 實(shí)現(xiàn),它致力于收集服務(wù)的定時數(shù)據(jù),以及解決微服務(wù)架構(gòu)中的延遲問題,包括數(shù)據(jù)的收集、存儲、查找和展現(xiàn),這篇文章主要介紹了SpringCloud集成Sleuth和Zipkin,需要的朋友可以參考下2022-11-11

